Approve + Reject ลงเวลากรณีพิเศษ

This commit is contained in:
Suphonchai Phoonsawat 2023-11-24 13:05:22 +07:00
parent a8379303f9
commit 5ae67ee02e
3 changed files with 130 additions and 1 deletions

View file

@ -0,0 +1,15 @@
namespace BMA.EHR.Leave.Service.DTOs.AdditionalCheck
{
public class ApproveRequestDto
{
public string CheckInTime { get; set; }
public string CheckOutTime { get; set; }
public string CheckInStatus { get; set; }
public string CheckOutStatus { get; set; }
public string Reason { get; set; }
}
}

View file

@ -0,0 +1,7 @@
namespace BMA.EHR.Leave.Service.DTOs.AdditionalCheck
{
public class RejectRequestDto
{
public string Reason { get; set; }
}
}