11 lines
No EOL
296 B
C#
11 lines
No EOL
296 B
C#
namespace BMA.EHR.Leave.Service.DTOs.Reports
|
|
{
|
|
public class GetLeaveDetailReportDto
|
|
{
|
|
public DateTime StartDate { get; set; } = DateTime.MinValue;
|
|
|
|
public DateTime EndDate { get; set; } = DateTime.MinValue;
|
|
|
|
public string Type { get; set; } = string.Empty;
|
|
}
|
|
} |