Files
ersatztv/ErsatzTV.Core/Interfaces/Jellyfin/IJellyfinPathReplacementService.cs
T
Jason DoveandGitHub 89a2ac9455 add unavailable media state for plex media (#754)
* rework plex movie library scanner; add unavailable media item state

* plex television scanner improvements

* reset plex etags as needed

* update changelog
2022-04-23 22:19:10 -05:00

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);
}