Files
ersatztv/ErsatzTV.Core/Scheduling/YamlScheduling/Models/YamlPlayoutContentItem.cs
T
Jason DoveandGitHub 7d83e66ba6 add yaml playout history; allow yaml playouts to be extended (#1832)
* add multi_part; refactor skipping items

* save and apply history for yaml playouts

* do not remove history on yaml playout reset
2024-07-29 13:09:14 -05:00

13 lines
318 B
C#

using YamlDotNet.Serialization;
namespace ErsatzTV.Core.Scheduling.YamlScheduling.Models;
public class YamlPlayoutContentItem
{
public string Key { get; set; }
public string Order { get; set; }
[YamlMember(Alias = "multi_part", ApplyNamingConventions = false)]
public bool MultiPart { get; set; }
}