Files
ersatztv/ErsatzTV.Core/Scheduling/YamlScheduling/Models/YamlPlayoutRepeatInstruction.cs
T
Jason DoveandGitHub e4e4f68eb4 refactor yaml playout builder (#1820)
* update changelog

* refactor some handlers

* refactor skip items instruction

* more refactoring
2024-07-27 10:33:21 -05:00

9 lines
215 B
C#

namespace ErsatzTV.Core.Scheduling.YamlScheduling.Models;
public class YamlPlayoutRepeatInstruction : YamlPlayoutInstruction
{
public override bool ChangesIndex => true;
public bool Repeat { get; set; }
}