namespace BMA.EHR.Leave.Service.DTOs.LeaveRequest { public class GetLeaveRequestTableResultDto { public Guid Id { get; set; } public string LeaveTypeName { get; set; } public Guid LeaveTypeId { get; set; } public string FullName { get; set; } public DateTime DateSendLeave { get; set; } public string Status { get; set; } public bool IsDelete { get; set; } } }