hrms-api-backend/BMA.EHR.Leave/DTOs/Reports/GetLeaveDetailReportDto.cs

11 lines
296 B
C#
Raw Normal View History

2023-12-20 15:01:23 +07:00
namespace BMA.EHR.Leave.Service.DTOs.Reports
{
public class GetLeaveDetailReportDto
{
public DateTime StartDate { get; set; } = DateTime.MinValue;
public DateTime EndDate { get; set; } = DateTime.MinValue;
2023-12-20 15:01:23 +07:00
public string Type { get; set; } = string.Empty;
2023-12-20 15:01:23 +07:00
}
}