17 lines
406 B
C#
17 lines
406 B
C#
|
|
using System.ComponentModel.DataAnnotations;
|
|||
|
|
|
|||
|
|
namespace BMA.EHR.Leave.Service.DTOs.LeaveRequest
|
|||
|
|
{
|
|||
|
|
public class GetLeaveCheckDto
|
|||
|
|
{
|
|||
|
|
[Required]
|
|||
|
|
public Guid Type { get; set; } = Guid.Empty;
|
|||
|
|
|
|||
|
|
[Required]
|
|||
|
|
public DateTime StartLeaveDate { get; set; } = DateTime.MinValue;
|
|||
|
|
|
|||
|
|
[Required]
|
|||
|
|
public DateTime EndLeaveDate { get; set;} = DateTime.MinValue;
|
|||
|
|
}
|
|||
|
|
}
|