* update more libraries to dotnet 10 * fix dockerfiles * fix numeric types
10 lines
237 B
C#
10 lines
237 B
C#
using System.ComponentModel;
|
|
|
|
namespace ErsatzTV.Core.Api.ScriptedPlayout;
|
|
|
|
public record ControlWatermarkOn
|
|
{
|
|
[Description("A list of existing watermark names to turn on")]
|
|
public required List<string> Watermark { get; set; }
|
|
}
|