* add schedule setting * it works * fix tests * update readme * rebuild all playouts
16 lines
485 B
C#
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; }
|
|
}
|
|
}
|