Files
ersatztv/ErsatzTV.Core/Scheduling/YamlScheduling/Models/YamlPlayoutPreRollInstruction.cs
T

12 lines
313 B
C#

using YamlDotNet.Serialization;
namespace ErsatzTV.Core.Scheduling.YamlScheduling.Models;
public class YamlPlayoutPreRollInstruction : YamlPlayoutInstruction
{
[YamlMember(Alias = "pre_roll", ApplyNamingConventions = false)]
public bool PreRoll { get; set; }
public string Sequence { get; set; }
}