add fixed start time behavior option to schedules and schedule items (#2017)

This commit is contained in:
Jason Dove
2025-05-30 09:30:09 +00:00
committed by GitHub
parent c8f5b51d93
commit d9a3496bf5
39 changed files with 23465 additions and 31 deletions
@@ -1,4 +1,6 @@
namespace ErsatzTV.Application.ProgramSchedules;
using ErsatzTV.Core.Scheduling;
namespace ErsatzTV.Application.ProgramSchedules;
public record ProgramScheduleViewModel(
int Id,
@@ -6,4 +8,5 @@ public record ProgramScheduleViewModel(
bool KeepMultiPartEpisodesTogether,
bool TreatCollectionsAsShows,
bool ShuffleScheduleItems,
bool RandomStartPoint);
bool RandomStartPoint,
FixedStartTimeBehavior FixedStartTimeBehavior);