Files
ersatztv/ErsatzTV.Core/Domain/Scheduling/Template.cs
T
Jason DoveandGitHub caef4a139e block scheduling skip unchanged blocks (#1550)
* schedule blocks in order

* block minutes must be multiple of 15

* improve block minutes entry, validation and display

* confirm deleting blocks and block groups

* confirm deleting templates and template groups

* skip unchanged blocks in playout
2024-01-14 06:16:53 -06:00

13 lines
411 B
C#

namespace ErsatzTV.Core.Domain.Scheduling;
public class Template
{
public int Id { get; set; }
public int TemplateGroupId { get; set; }
public TemplateGroup TemplateGroup { get; set; }
public string Name { get; set; }
public ICollection<TemplateItem> Items { get; set; }
public ICollection<PlayoutTemplate> PlayoutTemplates { get; set; }
public DateTime DateUpdated { get; set; }
}