12 lines
316 B
C#
12 lines
316 B
C#
using YamlDotNet.Serialization;
|
|
|
|
namespace ErsatzTV.Core.Scheduling.YamlScheduling.Models;
|
|
|
|
public class YamlPlayoutPostRollInstruction : YamlPlayoutInstruction
|
|
{
|
|
[YamlMember(Alias = "post_roll", ApplyNamingConventions = false)]
|
|
public bool PostRoll { get; set; }
|
|
|
|
public string Sequence { get; set; }
|
|
}
|