* update changelog * refactor some handlers * refactor skip items instruction * more refactoring
10 lines
276 B
C#
10 lines
276 B
C#
using YamlDotNet.Serialization;
|
|
|
|
namespace ErsatzTV.Core.Scheduling.YamlScheduling.Models;
|
|
|
|
public class YamlPlayoutSkipItemsInstruction : YamlPlayoutInstruction
|
|
{
|
|
[YamlMember(Alias = "skip_items", ApplyNamingConventions = false)]
|
|
public int SkipItems { get; set; }
|
|
}
|