18 lines
535 B
C#
Raw Normal View History

using System.Collections.Generic;
2023-08-15 23:52:30 -04:00
namespace DamageAssesment.Api.SurveyResponses.Models
{
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
}
}