Stream custom live channels using your own media
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.
 
 
 

15 lines
555 B

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<BlockItem> Items { get; set; }
public ICollection<TemplateItem> TemplateItems { get; set; }
public ICollection<PlayoutHistory> PlayoutHistory { get; set; }
public DateTime DateUpdated { get; set; }
}