Files
ersatztv/ErsatzTV.Core/Domain/Scheduling/PlayoutTemplate.cs
T
Jason DoveandGitHub effb96a2c2 alternate schedule and template consistency (#2757)
* refactor classic and block schedules to use same alternate schedule selector

* handle start year and end year

* add migrations for classic and block schedules

* allow editing block template start and end year

* add tests that include years

* add date range editing to classic (alternate) schedules

* fix running tests locally

* restore media files load; needed for local folder scanners

* update changelog

* feedback
2026-01-06 12:51:07 -06:00

27 lines
990 B
C#

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; }
}