8 lines
196 B
C#
8 lines
196 B
C#
namespace Shared.Contracts.Holidays;
|
|
|
|
public record HolidayDto
|
|
{
|
|
public DateTime Holidaydate { get; set; }
|
|
public long HolidayId { get; set; }
|
|
public string HolidayYear { get; set; }
|
|
} |