18 lines
529 B
C#
Raw Normal View History

using System.Collections.Generic;
2023-08-15 23:52:30 -04:00
2023-10-04 18:45:51 -04:00
namespace DamageAssesment.Api.Responses.Models
2023-08-15 23:52:30 -04:00
{
public class Question
2023-08-15 23:52:30 -04:00
{
public int Id { get; set; }
public string TypeText { get; set; }
2023-08-15 23:52:30 -04:00
public int QuestionNumber { get; set; }
public bool IsRequired { get; set; }
public bool Comment { get; set; }
public bool Key { get; set; }
public int SurveyId { get; set; }
2023-08-15 23:52:30 -04:00
public int CategoryId { get; set; }
public Dictionary<string, string> Text { get; set; }
2023-08-15 23:52:30 -04:00
}
}