Files
ersatztv/ErsatzTV/PlayoutKind.cs
T
Jason DoveandGitHub 53f281ce32 add xmltv block behavior setting (#2336)
* 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
2025-08-23 20:16:12 +00:00

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";
}