* add collection content to yaml playout * add smart_collection content * add multi_collection content * add playlist content
10 lines
297 B
C#
10 lines
297 B
C#
using YamlDotNet.Serialization;
|
|
|
|
namespace ErsatzTV.Core.Scheduling.YamlScheduling.Models;
|
|
|
|
public class YamlPlayoutContentSmartCollectionItem : YamlPlayoutContentItem
|
|
{
|
|
[YamlMember(Alias = "smart_collection", ApplyNamingConventions = false)]
|
|
public string SmartCollection { get; set; }
|
|
}
|