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