namespace ErsatzTV.Core.Domain.Scheduling; public class Block { public int Id { get; set; } public int BlockGroupId { get; set; } public BlockGroup BlockGroup { get; set; } public string Name { get; set; } public int Minutes { get; set; } public BlockStopScheduling StopScheduling { get; set; } public ICollection Items { get; set; } public ICollection TemplateItems { get; set; } public ICollection PlayoutHistory { get; set; } public DateTime DateUpdated { get; set; } }