12 lines
298 B
C#
12 lines
298 B
C#
using System.ComponentModel;
|
|
|
|
namespace ErsatzTV.Core.Api.ScriptedPlayout;
|
|
|
|
public record ControlGraphicsOn
|
|
{
|
|
[Description("A list of graphics elements to turn on.")]
|
|
public required List<string> Graphics { get; set; }
|
|
|
|
public Dictionary<string, string> Variables { get; set; } = [];
|
|
}
|