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

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

14 lines
390 B
C#

using ErsatzTV.Core.Domain;
namespace ErsatzTV.Core.Interfaces.Streaming;
public interface IGraphicsElementLoader
{
Task<GraphicsEngineContext> LoadAll(
GraphicsEngineContext context,
List<PlayoutItemGraphicsElement> elements,
CancellationToken cancellationToken);
Task<Option<string>> TryLoadName(string fileName, CancellationToken cancellationToken);
}