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 12:12:08 +07:00
|
|
|
public int? node { get; set; }
|
2024-12-12 00:00:43 +07:00
|
|
|
public string? nodeId { get; set; } = string.Empty;
|
|
|
|
|
}
|
|
|
|
|
}
|