Files
ersatztv/ErsatzTV.Core/Domain/ProgramSchedule.cs
T
Jason DoveandGitHub 78fdc9c57a add option to shuffle schedule items (#652)
* add schedule setting

* it works

* fix tests

* update readme

* rebuild all playouts
2022-02-22 21:20:40 -06:00

16 lines
485 B
C#

using System.Collections.Generic;
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 List<ProgramScheduleItem> Items { get; set; }
public List<Playout> Playouts { get; set; }
}
}