Files
DamageAssessment_Backend/DamageAssesmentApi/DamageAssesment.Api.Responses/Models/SurveyQuestion.cs
2023-10-13 14:48:08 -04:00

12 lines
346 B
C#

namespace DamageAssesment.Api.Responses.Models
{
public class SurveyQuestions
{
public int CategoryId { get; set; }
public string CategoryName { get; set; }
public string CategoryImage { get; set; }
public object CategoryNames { get; set; }
public List<Question> Questions { get; set; }
}
}