* 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
13 lines
411 B
C#
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; }
|
|
}
|