using System.Collections.Generic; using System.Threading.Tasks; using ErsatzTV.Core.Domain; namespace ErsatzTV.Core.Interfaces.Jellyfin { public interface IJellyfinPathReplacementService { Task GetReplacementJellyfinPath(int libraryPathId, string path); string GetReplacementJellyfinPath(List pathReplacements, string path, bool log = true); } }