Files
ersatztv/ErsatzTV.Core.Nullable/Api/ScriptedPlayout/ContentAll.cs
T
Jason DoveandGitHub 7bd8cefe2e more dotnet 10 updates (#2676)
* update more libraries to dotnet 10

* fix dockerfiles

* fix numeric types
2025-11-29 15:47:08 -06:00

18 lines
500 B
C#

using System.ComponentModel;
namespace ErsatzTV.Core.Api.ScriptedPlayout;
public record ContentAll
{
[Description("The 'key' for the content that should be added")]
public required string Content { get; set; }
[Description("Flags this content as filler, which influences EPG grouping")]
public string? FillerKind { get; set; }
[Description("Overrides the title used in the EPG")]
public string? CustomTitle { get; set; }
public bool DisableWatermarks { get; set; }
}