Files
ersatztv/ErsatzTV.Core/Interfaces/Plex/IPlexPathReplacementService.cs
T
Jason DoveandGitHub 89a2ac9455 add unavailable media state for plex media (#754)
* rework plex movie library scanner; add unavailable media item state

* plex television scanner improvements

* reset plex etags as needed

* update changelog
2022-04-23 22:19:10 -05:00

10 lines
322 B
C#

using ErsatzTV.Core.Domain;
namespace ErsatzTV.Core.Interfaces.Plex;
public interface IPlexPathReplacementService
{
Task<string> GetReplacementPlexPath(int libraryPathId, string path, bool log = true);
string GetReplacementPlexPath(List<PlexPathReplacement> pathReplacements, string path, bool log = true);
}