* add template playout kind * add template scheduler count * implement pad to next * only allow resetting template playouts * update changelog
12 lines
304 B
C#
12 lines
304 B
C#
using YamlDotNet.Serialization;
|
|
|
|
namespace ErsatzTV.Core.Scheduling.TemplateScheduling;
|
|
|
|
public class PlayoutTemplatePadToNextItem : PlayoutTemplateItem
|
|
{
|
|
[YamlMember(Alias = "pad_to_next", ApplyNamingConventions = false)]
|
|
public int PadToNext { get; set; }
|
|
|
|
public bool Trim { get; set; }
|
|
}
|