DamageAssessment_Backend/DamageAssesmentApi/DamageAssesment.Api.Questions/Models/SurveyQuestion.cs
2023-08-15 23:52:30 -04:00

11 lines
296 B
C#

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