mirror of https://github.com/ErsatzTV/ErsatzTV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
990 B
26 lines
990 B
namespace ErsatzTV.Core.Domain.Scheduling; |
|
|
|
public class PlayoutTemplate : IAlternateScheduleItem |
|
{ |
|
public int Id { get; set; } |
|
public int PlayoutId { get; set; } |
|
public Playout Playout { get; set; } |
|
public int TemplateId { get; set; } |
|
public Template Template { get; set; } |
|
public int? DecoTemplateId { get; set; } |
|
public DecoTemplate DecoTemplate { get; set; } |
|
public int Index { get; set; } |
|
public ICollection<DayOfWeek> DaysOfWeek { get; set; } |
|
public ICollection<int> DaysOfMonth { get; set; } |
|
public ICollection<int> MonthsOfYear { get; set; } |
|
public bool LimitToDateRange { get; set; } |
|
public int StartMonth { get; set; } |
|
public int StartDay { get; set; } |
|
public int? StartYear { get; set; } |
|
public int EndMonth { get; set; } |
|
public int EndDay { get; set; } |
|
public int? EndYear { get; set; } |
|
|
|
public DateTime DateUpdated { get; set; } |
|
//public ICollection<DateTimeOffset> AdditionalDays { get; set; } |
|
}
|
|
|