12 lines
363 B
C#
12 lines
363 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? node { get; set; } = string.Empty;
|
||
|
|
public string? nodeId { get; set; } = string.Empty;
|
||
|
|
}
|
||
|
|
}
|