18 lines
519 B
C#
18 lines
519 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace IntegrationTests.Models
|
|
{
|
|
public partial class Holiday
|
|
{
|
|
public System.Guid Id { get; set; }
|
|
public string Name { get; set; }
|
|
public short OccurrenceType { get; set; }
|
|
public short OccurrenceWeekDay { get; set; }
|
|
public short OccurrenceMonthDay { get; set; }
|
|
public short OccurrenceMonth { get; set; }
|
|
public bool WorkingDay { get; set; }
|
|
public bool NonWorkingWeek { get; set; }
|
|
}
|
|
}
|