* add script graphics element * pass template data as json to stdin * update changelog
11 lines
147 B
C#
11 lines
147 B
C#
namespace ErsatzTV.Core.Domain;
|
|
|
|
public enum GraphicsElementKind
|
|
{
|
|
Image = 0,
|
|
Text = 1,
|
|
Subtitle = 2,
|
|
Motion = 3,
|
|
Script = 4
|
|
}
|