Files
ersatztv/ErsatzTV.Core/Interfaces/Emby/IEmbyTelevisionLibraryScanner.cs
T
Jason DoveandGitHub 13e21bbcce sync episode tags and genres (#1155)
* sync episode tags and genres

* update dependencies

* property update local episode genres and tags

* fix test
2023-02-12 09:53:20 -06:00

16 lines
372 B
C#

using ErsatzTV.Core.Domain;
namespace ErsatzTV.Core.Interfaces.Emby;
public interface IEmbyTelevisionLibraryScanner
{
Task<Either<BaseError, Unit>> ScanLibrary(
string address,
string apiKey,
EmbyLibrary library,
string ffmpegPath,
string ffprobePath,
bool deepScan,
CancellationToken cancellationToken);
}