Files
ersatztv/ErsatzTV.Core/Interfaces/Repositories/IGraphicsElementRepository.cs
T

9 lines
203 B
C#

using ErsatzTV.Core.Domain;
namespace ErsatzTV.Core.Interfaces.Repositories;
public interface IGraphicsElementRepository
{
Task<Option<GraphicsElement>> GetGraphicsElementByPath(string path);
}