11 lines
296 B
C#
Raw Normal View History

namespace DamageAssesment.Api.Responses.Models
2023-08-15 23:52:30 -04:00
{
public class SurveyQuestions
{
public int CategoryId { get; set; }
public string CategoryName { get; set; }
public string CategoryImage { get; set; }
public List<Question> Questions { get; set; }
}
}