namespace BMA.EHR.Leave.Service.DTOs.LeaveRequest { public class GetUserLeaveProfileResultDto { public DateTime DateSendLeave { get; set; } public string LeaveTypeName { get; set; } public string Dear { get; set; } public string? LeaveSubTypeName { get; set; } = string.Empty; public string? CommanderPosition { get; set; } = string.Empty; public string FullName { get; set; } public string PositionName { get; set; } public string PositionLevelName { get; set; } public string OrganizationName { get; set; } public double LeaveLimit { get; set; } public double LeaveTotal { get; set; } public double LeaveRemain { get; set; } public double RestDayTotalOld { get; set; } public double RestDayTotalCurrent { get; set; } public DateTime BirthDate { get; set; } public DateTime? DateAppoint { get; set; } public double Salary { get; set; } public string SalaryText { get; set; } public DateTime? LeaveLast { get; set; } public string? TelephoneNumber { get; set; } public string? CurrentAddress { get; set; } public string? CurrentSubDistrict { get; set; } public string? CurrentDistrict { get; set; } public string? CurrentProvince { get; set; } public string? CurrentZipCode { get; set; } } }