18 lines
488 B
C#
18 lines
488 B
C#
namespace DamageAssesment.Api.Questions.Models
|
|
{
|
|
public class MultiLanQuestionCategory : BaseQuestionCategory
|
|
{
|
|
public object Titles { get; set; }
|
|
}
|
|
public class QuestionCategory : BaseQuestionCategory
|
|
{
|
|
public List<CategoryTranslation> Categories { get; set; }
|
|
}
|
|
public class BaseQuestionCategory
|
|
{
|
|
public int Id { get; set; }
|
|
public string IconName { get; set; }
|
|
public string IconLibrary { get; set; }
|
|
}
|
|
}
|