9 lines
240 B
C#
9 lines
240 B
C#
using ErsatzTV.Core.Domain;
|
|
|
|
namespace ErsatzTV.Core.Interfaces.Repositories;
|
|
|
|
public interface IGraphicsElementRepository
|
|
{
|
|
Task<Option<GraphicsElement>> GetGraphicsElementByPath(string path, CancellationToken cancellationToken);
|
|
}
|