add holiday

This commit is contained in:
kittapath 2025-09-14 21:02:24 +07:00
parent 9eae970ff3
commit aa904079a2
8 changed files with 1230 additions and 5 deletions

View file

@ -0,0 +1,15 @@

namespace BMA.EHR.Leave.Service.Request
{
public class HolidayRequest
{
public DateTime dateStart { get; set; } = DateTime.Now;
public DateTime dateEnd { get; set; } = DateTime.Now;
public int Year { get; set; } = DateTime.Now.Year;
public string Name { get; set; } = string.Empty;
}
}