hrms-api-backend/BMA.EHR.Leave/DTOs/Reports/GetLeaveDetailByNodeReportDto.cs
2024-12-13 12:12:08 +07:00

11 lines
No EOL
400 B
C#

namespace BMA.EHR.Leave.Service.DTOs.Reports
{
public class GetLeaveDetailByNodeReportDto
{
public DateTime StartDate { get; set; } = DateTime.MinValue;
public DateTime EndDate { get; set; } = DateTime.MinValue;
public string? Type { get; set; } = string.Empty;
public int? node { get; set; }
public string? nodeId { get; set; } = string.Empty;
}
}