12 lines
313 B
C#
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; }
|
|
}
|