LV1_025 - บันทึกแก้ไขสถานะการเข้า-ออกงาน (ADMIN)

This commit is contained in:
Suphonchai Phoonsawat 2024-01-09 14:48:07 +07:00
parent 3d1dfa9997
commit c01ed73e7e
2 changed files with 51 additions and 4 deletions

View file

@ -0,0 +1,15 @@
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;
}
}