* improve classic scheduling context display * add basic block scheduling context * add scheduling context to classic filler * improve parsing
9 lines
166 B
C#
9 lines
166 B
C#
namespace ErsatzTV.Core.Scheduling;
|
|
|
|
public record BlockSchedulingContext(
|
|
int BlockId,
|
|
int BlockItemId,
|
|
string Enumerator,
|
|
int Seed,
|
|
int Index);
|