11 lines
302 B
C#
11 lines
302 B
C#
namespace DamageAssesment.Api.SurveyResponses.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; }
|
|
}
|
|
}
|