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,14 @@
namespace BMA.EHR.Leave.Service.Response
{
public class SummaryHolidayByMonthResponseItem
{
public int? Id { get; set; }
public int? Count { get; set; }
public string? Month { get; set; }
public string? MonthFull { get; set; }
}
}