14 lines
507 B
C#
14 lines
507 B
C#
|
|
namespace BMA.EHR.Leave.Service.DTOs.Reports
|
||
|
|
{
|
||
|
|
public class GetLeave2DetailByNodeReportDto
|
||
|
|
{
|
||
|
|
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;
|
||
|
|
}
|
||
|
|
}
|