* update more libraries to dotnet 10 * fix dockerfiles * fix numeric types
18 lines
500 B
C#
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; }
|
|
}
|