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