mirror of https://github.com/ErsatzTV/ErsatzTV.git
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.
13 lines
360 B
13 lines
360 B
using YamlDotNet.Serialization; |
|
|
|
namespace ErsatzTV.Core.Scheduling.YamlScheduling.Models; |
|
|
|
public class YamlMidRollInstruction : YamlPlayoutInstruction |
|
{ |
|
[YamlMember(Alias = "mid_roll", ApplyNamingConventions = false)] |
|
public bool MidRoll { get; set; } |
|
|
|
public string Sequence { get; set; } |
|
|
|
public string Expression { get; set; } = "true"; |
|
}
|
|
|