* update more libraries to dotnet 10 * fix dockerfiles * fix numeric types
10 lines
218 B
C#
10 lines
218 B
C#
using System.ComponentModel;
|
|
|
|
namespace ErsatzTV.Core.Api.ScriptedPlayout;
|
|
|
|
public record ControlPreRollOn
|
|
{
|
|
[Description("The 'key' for the scripted playlist")]
|
|
public required string Playlist { get; set; }
|
|
}
|