using BMA.EHR.Domain.Models.MetaData; using Microsoft.EntityFrameworkCore; namespace BMA.EHR.Retirement.Service.Requests { public class RetirementResignRequest { public string? Location { get; set; } // public DateTime? SendDate { get; set; } public DateTime? ActiveDate { get; set; } public string? Reason { get; set; } public string? Remark { get; set; } public string? ReasonResign { get; set; } public string? OrganizationPositionOld { get; set; } public string? PositionExecutiveOld { get; set; } public string? PositionTypeOld { get; set; } public string? PositionLevelOld { get; set; } public string? PositionNumberOld { get; set; } public string? RemarkHorizontal { get; set; } public double? AmountOld { get; set; } public List? File { get; set; } } public class RetirementResignAdminRequest { public string ProfileId { get; set; } public string? Location { get; set; } public DateTime? ActiveDate { get; set; } public string? Reason { get; set; } public string? Remark { get; set; } public string? ReasonResign { get; set; } public string? OrganizationPositionOld { get; set; } public string? PositionExecutiveOld { get; set; } public string? PositionTypeOld { get; set; } public string? PositionLevelOld { get; set; } public string? PositionNumberOld { get; set; } public string? RemarkHorizontal { get; set; } public double? AmountOld { get; set; } public List? File { get; set; } } }