DamageAssessment_Backend/DamageAssesmentApi/DamageAssesment.Api.Questions/Models/SurveyQuestion.cs
2023-09-08 15:40:06 -04:00

11 lines
298 B
C#

namespace DamageAssesment.Api.Questions.Models
{
public class SurveyQuestions
{
public int CategoryId { get; set; }
public string IconName { get; set; }
public string IconLibrary { get; set; }
public List<MultiLanQuestion> Questions { get; set; }
}
}