2023-08-15 23:52:30 -04:00
|
|
|
|
namespace DamageAssesment.Api.Questions.Models
|
|
|
|
|
{
|
|
|
|
|
public class SurveyQuestions
|
|
|
|
|
{
|
|
|
|
|
public int CategoryId { get; set; }
|
2023-09-08 15:40:06 -04:00
|
|
|
|
public string IconName { get; set; }
|
|
|
|
|
public string IconLibrary { get; set; }
|
2023-09-13 01:28:24 -04:00
|
|
|
|
public List<MultiLanguage> QuestionsText { get; set; }
|
2023-08-15 23:52:30 -04:00
|
|
|
|
}
|
|
|
|
|
}
|