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

12 lines
314 B
C#

using YamlDotNet.Serialization;
namespace ErsatzTV.Core.Scheduling.YamlScheduling.Models;
public class YamlPlayoutEpgGroupInstruction : YamlPlayoutInstruction
{
[YamlMember(Alias = "epg_group", ApplyNamingConventions = false)]
public bool EpgGroup { get; set; }
public bool? Advance { get; set; }
}