hrms-api-backend/BMA.EHR.Retirement.Service/Requests/RetirementQuestionnaireQuestionRequest.cs

39 lines
1.7 KiB
C#

using BMA.EHR.Domain.Models.MetaData;
using Microsoft.EntityFrameworkCore;
namespace BMA.EHR.Retirement.Service.Requests
{
public class RetirementQuestionnaireQuestionRequest
{
public string? Question1Desc { get; set; }
public string? Question1Score { get; set; }
public string[] Question1Answer { get; set; }
public string? Question2Desc { get; set; }
public string? Question2Score { get; set; }
public string[] Question2Answer { get; set; }
public string? Question3Desc { get; set; }
public string? Question3Score { get; set; }
public string[] Question3Answer { get; set; }
public string? Question4Desc { get; set; }
public string? Question4Score { get; set; }
public string[] Question4Answer { get; set; }
public string? Question5Desc { get; set; }
public string? Question5Score { get; set; }
public string[] Question5Answer { get; set; }
public string? Question6Desc { get; set; }
public string? Question6Score { get; set; }
public string[] Question6Answer { get; set; }
public string? Question7Desc { get; set; }
public string? Question7Score { get; set; }
public string[] Question7Answer { get; set; }
public string? Question8Desc { get; set; }
public string? Question8Score { get; set; }
public string[] Question8Answer { get; set; }
public string? Question9Desc { get; set; }
public string? Question9Score { get; set; }
public string[] Question9Answer { get; set; }
public string? Question10Desc { get; set; }
public string? Question10Score { get; set; }
public string[] Question10Answer { get; set; }
}
}