15 lines
377 B
C#
15 lines
377 B
C#
|
|
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;
|
||
|
|
}
|
||
|
|
}
|