Stream custom live channels using your own media
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

17 lines
500 B

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; }
}