2023-09-13 00:28:24 -05:00
|
|
|
|
using System.Collections.Generic;
|
2023-08-15 22:52:30 -05:00
|
|
|
|
|
2023-09-26 15:22:26 -05:00
|
|
|
|
namespace DamageAssesment.Api.Responses.Models
|
2023-08-15 22:52:30 -05:00
|
|
|
|
{
|
2023-09-13 00:28:24 -05:00
|
|
|
|
public class Question
|
2023-08-15 22:52:30 -05:00
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
2023-09-13 00:28:24 -05:00
|
|
|
|
public string TypeText { get; set; }
|
2023-08-15 22:52:30 -05:00
|
|
|
|
public int QuestionNumber { get; set; }
|
|
|
|
|
public bool IsRequired { get; set; }
|
|
|
|
|
public bool Comment { get; set; }
|
|
|
|
|
public bool Key { get; set; }
|
2023-09-13 00:28:24 -05:00
|
|
|
|
public int SurveyId { get; set; }
|
2023-08-15 22:52:30 -05:00
|
|
|
|
public int CategoryId { get; set; }
|
2023-09-13 00:28:24 -05:00
|
|
|
|
public Dictionary<string, string> Text { get; set; }
|
2023-08-15 22:52:30 -05:00
|
|
|
|
}
|
|
|
|
|
}
|