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