2023-08-15 22:52:30 -05:00
|
|
|
|
namespace DamageAssesment.Api.Questions.Models
|
|
|
|
|
{
|
|
|
|
|
public class SurveyQuestions
|
|
|
|
|
{
|
|
|
|
|
public int CategoryId { get; set; }
|
2023-09-08 14:40:06 -05:00
|
|
|
|
public string IconName { get; set; }
|
|
|
|
|
public string IconLibrary { get; set; }
|
2023-10-13 12:21:33 -05:00
|
|
|
|
public object CategoryNames { get; set; }
|
2023-09-13 00:28:24 -05:00
|
|
|
|
public List<MultiLanguage> QuestionsText { get; set; }
|
2023-08-15 22:52:30 -05:00
|
|
|
|
}
|
|
|
|
|
}
|