using System.ComponentModel.DataAnnotations; namespace BMA.EHR.Leave.Service.DTOs.CheckIn { public class EditCheckInStatusDto { [Required] public string CheckInStatus { get; set; } = string.Empty; [Required] public string CheckOutStatus { get; set; } = string.Empty; public string? Reason { get; set; } = string.Empty; } }