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; [Required] public string LeaveRange { get; set; } = "ALL"; [Required] public string LeaveRangeEnd { get; set; } = "ALL"; } }