* rework plex movie library scanner; add unavailable media item state * plex television scanner improvements * reset plex etags as needed * update changelog
10 lines
322 B
C#
10 lines
322 B
C#
using ErsatzTV.Core.Domain;
|
|
|
|
namespace ErsatzTV.Core.Interfaces.Plex;
|
|
|
|
public interface IPlexPathReplacementService
|
|
{
|
|
Task<string> GetReplacementPlexPath(int libraryPathId, string path, bool log = true);
|
|
string GetReplacementPlexPath(List<PlexPathReplacement> pathReplacements, string path, bool log = true);
|
|
}
|