* improve classic scheduling context display * add basic block scheduling context * add scheduling context to classic filler * improve parsing
11 lines
213 B
C#
11 lines
213 B
C#
namespace ErsatzTV.Core.Scheduling;
|
|
|
|
public record ClassicSchedulingContext(
|
|
string Scheduler,
|
|
int ScheduleId,
|
|
int ItemId,
|
|
int? FillerPresetId,
|
|
string Enumerator,
|
|
int Seed,
|
|
int Index);
|