LV1_025 - บันทึกแก้ไขสถานะการเข้า-ออกงาน (ADMIN)
This commit is contained in:
parent
3d1dfa9997
commit
c01ed73e7e
2 changed files with 51 additions and 4 deletions
15
BMA.EHR.Leave.Service/DTOs/CheckIn/EditCheckInStatusDto.cs
Normal file
15
BMA.EHR.Leave.Service/DTOs/CheckIn/EditCheckInStatusDto.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue