* replace playout externaljsonfile and templatefile with schedulefile * add scripted schedule-based playout * wip - not functional yet * temp disable scripted playout creation * allow fast-forwarding block playouts * add xmltv block behavior setting
10 lines
251 B
C#
10 lines
251 B
C#
namespace ErsatzTV;
|
|
|
|
public static class PlayoutKind
|
|
{
|
|
public const string ExternalJson = "externaljson";
|
|
public const string Sequential = "sequential";
|
|
public const string Scripted = "scripted";
|
|
public const string Block = "block";
|
|
}
|