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

10 lines
297 B
C#

using YamlDotNet.Serialization;
namespace ErsatzTV.Core.Scheduling.YamlScheduling.Models;
public class YamlPlayoutShuffleSequenceInstruction : YamlPlayoutInstruction
{
[YamlMember(Alias = "shuffle_sequence", ApplyNamingConventions = false)]
public string ShuffleSequence { get; set; }
}