mirror of https://github.com/ErsatzTV/ErsatzTV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
632 B
21 lines
632 B
using ErsatzTV.Core.Domain; |
|
using ErsatzTV.Core.Jellyfin; |
|
|
|
namespace ErsatzTV.Core.Interfaces.Jellyfin; |
|
|
|
public interface IJellyfinTelevisionLibraryScanner |
|
{ |
|
Task<Either<BaseError, Unit>> ScanLibrary( |
|
JellyfinConnectionParameters connectionParameters, |
|
JellyfinLibrary library, |
|
bool deepScan, |
|
CancellationToken cancellationToken); |
|
|
|
Task<Either<BaseError, Unit>> ScanSingleShow( |
|
JellyfinConnectionParameters connectionParameters, |
|
JellyfinLibrary library, |
|
string showId, |
|
string showTitle, |
|
bool deepScan, |
|
CancellationToken cancellationToken); |
|
}
|
|
|