* update changelog * refactor some handlers * refactor skip items instruction * more refactoring
9 lines
215 B
C#
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; }
|
|
}
|