hrms-api-backend/BMA.EHR.MetaData.Service/Response/SummaryHolidayByMonthResponseItem.cs

15 lines
285 B
C#
Raw Permalink Normal View History

2024-12-21 01:11:42 +07:00
namespace BMA.EHR.MetaData.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; }
}
}