using ErsatzTV.Core.Domain; namespace ErsatzTV.Core.Interfaces.Jellyfin; public interface IJellyfinPathReplacementService { Task GetReplacementJellyfinPath(int libraryPathId, string path, bool log = true); string GetReplacementJellyfinPath(List pathReplacements, string path, bool log = true); string ReplaceNetworkPath(JellyfinMediaSource mediaSource, string path, string networkPath, string replacement); }