* add template playout kind * add template scheduler count * implement pad to next * only allow resetting template playouts * update changelog
9 lines
200 B
C#
9 lines
200 B
C#
namespace ErsatzTV;
|
|
|
|
public static class PlayoutKind
|
|
{
|
|
public const string ExternalJson = "externaljson";
|
|
public const string Template = "template";
|
|
public const string Block = "block";
|
|
}
|