Files
ersatztv/ErsatzTV.Core/Graphics/SubtitleGraphicsElement.cs
T
Jason DoveandGitHub 7530c592ff add graphics element name (#2613)
* add graphics element name

* update dependencies
2025-11-08 08:26:00 -06:00

15 lines
391 B
C#

using YamlDotNet.Serialization;
namespace ErsatzTV.Core.Graphics;
public class SubtitleGraphicsElement : BaseGraphicsElement
{
[YamlMember(Alias = "z_index", ApplyNamingConventions = false)]
public int? ZIndex { get; set; }
[YamlMember(Alias = "epg_entries", ApplyNamingConventions = false)]
public int EpgEntries { get; set; }
public string Template { get; set; }
}