using BMA.EHR.Domain.Models.MetaData; using Microsoft.EntityFrameworkCore; namespace BMA.EHR.Retirement.Service.Requests { public class RetirementQuestionRequest { public Guid RetirementResignId { get; set; } public List? ReasonWork { get; set; } public string? ReasonWorkOther { get; set; } public int? TimeThink { get; set; } public List? ExitFactor { get; set; } public string? ExitFactorOther { get; set; } public List? Adjust { get; set; } public string? AdjustOther { get; set; } public string? RealReason { get; set; } public string? NotExitFactor { get; set; } public bool? Havejob { get; set; } public string? HavejobReason { get; set; } public bool? SuggestFriends { get; set; } public string? SuggestFriendsReason { get; set; } public bool? FutureWork { get; set; } public string? FutureWorkReason { get; set; } public string? Suggestion { get; set; } } }