* start to add program schedule alternates * edit days of the week * editor improvements * save changes * build playouts using alternate schedules * reset playout as needed * add priority message
15 lines
537 B
C#
15 lines
537 B
C#
namespace ErsatzTV.Core.Domain;
|
|
|
|
public class ProgramSchedule
|
|
{
|
|
public int Id { get; set; }
|
|
public string Name { get; set; }
|
|
public bool KeepMultiPartEpisodesTogether { get; set; }
|
|
public bool TreatCollectionsAsShows { get; set; }
|
|
public bool ShuffleScheduleItems { get; set; }
|
|
public bool RandomStartPoint { get; set; }
|
|
public List<ProgramScheduleItem> Items { get; set; }
|
|
public List<Playout> Playouts { get; set; }
|
|
public List<ProgramScheduleAlternate> ProgramScheduleAlternates { get; set; }
|
|
}
|