15 lines
393 B
C#
15 lines
393 B
C#
using ErsatzTV.Core.Domain;
|
|
|
|
namespace ErsatzTV.Core.Interfaces.Plex;
|
|
|
|
public interface IPlexPathReplacementService
|
|
{
|
|
Task<string> GetReplacementPlexPath(
|
|
int libraryPathId,
|
|
string path,
|
|
CancellationToken cancellationToken,
|
|
bool log = true);
|
|
|
|
string GetReplacementPlexPath(List<PlexPathReplacement> pathReplacements, string path, bool log = true);
|
|
}
|