using ErsatzTV.Core.Domain; namespace ErsatzTV.Core.Interfaces.Emby; public interface IEmbyPathReplacementService { Task GetReplacementEmbyPath(int libraryPathId, string path, bool log = true); string GetReplacementEmbyPath(List pathReplacements, string path, bool log = true); string ReplaceNetworkPath(EmbyMediaSource embyMediaSource, string path, string networkPath, string replacement); }