This commit is contained in:
parent
11db0315e7
commit
12fab7cc1f
3 changed files with 24 additions and 10 deletions
14
BMA.EHR.Leave/DTOs/Reports/GetLeave2DetailByNodeReportDto.cs
Normal file
14
BMA.EHR.Leave/DTOs/Reports/GetLeave2DetailByNodeReportDto.cs
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
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;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue