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

14 lines
504 B
C#
Raw Normal View History

2024-12-12 00:00:43 +07:00
namespace BMA.EHR.Leave.Service.DTOs.Reports
{
public class GetLeaveDetailByNodeReportDto
{
public DateTime StartDate { get; set; } = DateTime.MinValue;
public DateTime EndDate { get; set; } = DateTime.MinValue;
2024-12-13 11:52:58 +07:00
public string? Type { get; set; } = string.Empty;
2024-12-13 21:10:46 +07:00
public int node { get; set; }
public string nodeId { get; set; }
2025-02-04 11:29:22 +07:00
public bool? isRetirement { get; set; } = false;
2025-03-11 17:33:10 +07:00
2025-03-12 10:17:43 +07:00
public string? revisionId { get; set; } = string.Empty;
2024-12-12 00:00:43 +07:00
}
}