14 lines
285 B
C#
14 lines
285 B
C#
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; }
|
|
|
|
}
|
|
}
|