DamageAssessment_Backend/DamageAssesmentApi/DamageAssesment.Api.Questions/Models/SurveyQuestion.cs

12 lines
349 B
C#
Raw Permalink Normal View History

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; }
public object CategoryNames { get; set; }
public List<MultiLanguage> QuestionsText { get; set; }
2023-08-15 22:52:30 -05:00
}
}