DamageAssessment_Backend/DamageAssesmentApi/DamageAssesment.Api.Questions/Models/Question.cs

30 lines
836 B
C#
Raw Normal View History

2023-08-15 22:52:30 -05:00
using System.ComponentModel.DataAnnotations;
namespace DamageAssesment.Api.Questions.Models
{
2023-09-08 14:40:06 -05:00
public class MultiLanQuestion: BaseQuestion
{
public MultiLanguage Questions { get; set; }
}
public class Question: BaseQuestion
2023-08-15 22:52:30 -05:00
{
public List<QuestionsTranslation> Questions { get; set; }
2023-09-08 14:40:06 -05:00
}
public class BaseQuestion
{
public int Id { get; set; }
2023-08-15 22:52:30 -05:00
//public int QuestionTypeID { get; set; }
public string TypeText { get; set; } = string.Empty;
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; }
public int CategoryId { get; set; }
// public int? Survey_SurveyID { get; set; }
}
}