12 lines
No EOL
286 B
C#
12 lines
No EOL
286 B
C#
namespace BMA.EHR.Leave.Service.DTOs.Reports
|
|
{
|
|
public class GetLeaveReportDto
|
|
{
|
|
public string? Type { get; set; } = "FULL";
|
|
|
|
public DateTime StartDate { get; set; } = DateTime.MinValue;
|
|
|
|
public DateTime EndDate { get; set; } = DateTime.MinValue;
|
|
|
|
}
|
|
} |