16 lines
555 B
C#
16 lines
555 B
C#
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; }
|
|
}
|