Files
ersatztv/ErsatzTV.Core/Scheduling/BlockSchedulingContext.cs
T
Jason DoveandGitHub 2ad6547349 scheduler context improvements (#2819)
* improve classic scheduling context display

* add basic block scheduling context

* add scheduling context to classic filler

* improve parsing
2026-02-09 20:19:52 -06:00

9 lines
166 B
C#

namespace ErsatzTV.Core.Scheduling;
public record BlockSchedulingContext(
int BlockId,
int BlockItemId,
string Enumerator,
int Seed,
int Index);