add API #1600
All checks were successful
Build & Deploy Leave Service / build (push) Successful in 1m58s

This commit is contained in:
Suphonchai Phoonsawat 2026-06-22 23:13:51 +07:00
parent a2dc4b5b82
commit ae417e4777
2 changed files with 159 additions and 0 deletions

View file

@ -12,4 +12,21 @@
public string Reason { get; set; }
}
public class ApproveRequestListItemDto
{
/// <summary>
/// id ของ record รายการคำขอลงเวลาพิเศษนั้นๆ
/// </summary>
public Guid RecId { get; set; }
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; }
}
}