Files
ersatztv/ErsatzTV.Core/Domain/GraphicsElementKind.cs
T
Jason DoveandGitHub c524bc0d7d add script graphics element (#2681)
* add script graphics element

* pass template data as json to stdin

* update changelog
2025-11-30 14:20:18 -06:00

11 lines
147 B
C#

namespace ErsatzTV.Core.Domain;
public enum GraphicsElementKind
{
Image = 0,
Text = 1,
Subtitle = 2,
Motion = 3,
Script = 4
}