2023-10-04 17:45:51 -05:00
|
|
|
|
namespace DamageAssesment.Api.Responses.Models
|
2023-08-15 22:52:30 -05: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; }
|
|
|
|
|
}
|
|
|
|
|
}
|