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