LV1_015 - ประวัติการเปลี่ยนรอบการลงเวลา (ADMIN)

This commit is contained in:
Suphonchai Phoonsawat 2023-11-23 17:04:45 +07:00
parent 2bf43a52b5
commit 1e556db01a
5 changed files with 112 additions and 11 deletions

View file

@ -0,0 +1,16 @@
namespace BMA.EHR.Leave.Service.DTOs.ChangeRound
{
public class ChangeRoundHistoryDto
{
public int Round { get; set; }
public string StartTimeMorning { get; set; }
public string LeaveTimeAfternoon { get; set; }
public DateTime EffectiveDate { get; set; }
public string Remark { get; set; }
}
}