11 lines
272 B
C#
11 lines
272 B
C#
|
namespace DamageAssesment.Api.Responses.Models
|
|||
|
{
|
|||
|
public class QuestionCategory
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
public string IconName { get; set; }
|
|||
|
public string IconLibrary { get; set; }
|
|||
|
public object Titles { get; set; }
|
|||
|
}
|
|||
|
}
|