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

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