hrms-api-backend/BMA.EHR.Leave/Response/SummaryHolidayByMonthResponseItem.cs

15 lines
282 B
C#
Raw Normal View History

2025-09-14 21:02:24 +07:00
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; }
}
}