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