hrms-api-backend/BMA.EHR.Leave/DTOs/Reports/GetLeaveDetailByNodeReportDto.cs
AdisakKanthawilang 123501378b
Some checks failed
release-dev / release-dev (push) Failing after 11s
fix
2025-03-12 10:17:43 +07:00

14 lines
No EOL
504 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; }
public bool? isRetirement { get; set; } = false;
public string? revisionId { get; set; } = string.Empty;
}
}