using Microsoft.AspNetCore.Http; using Microsoft.EntityFrameworkCore; namespace BMA.EHR.Retirement.Service.Requests { public class RetirementOutEditRequest { public string Organization { get; set; } public string Reason { get; set; } public string? OrganizationPositionOld { get; set; } public DateTime? Date { get; set; } public string? PositionTypeOld { get; set; } public string? PositionLevelOld { get; set; } public string? PositionNumberOld { get; set; } public double? AmountOld { get; set; } } }