* add multi_part; refactor skipping items * save and apply history for yaml playouts * do not remove history on yaml playout reset
13 lines
318 B
C#
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; }
|
|
}
|