API การลา 01-03

This commit is contained in:
Suphonchai Phoonsawat 2023-11-29 17:28:15 +07:00
parent 32686c3e0b
commit cffb53c1f5
29 changed files with 6391 additions and 4 deletions

View file

@ -0,0 +1,11 @@
namespace BMA.EHR.Leave.Service.DTOs.LeaveRequest
{
public class GetLeaveCheckResultDto
{
public bool IsLeave { get;set; } = false;
public double SumDateWork { get; set; } = 0;
public double TotalDate { get; set; } = 0;
}
}