7 lines
186 B
C#
7 lines
186 B
C#
namespace ErsatzTV.Core.Interfaces.Emby;
|
|
|
|
public interface IEmbyCollectionScanner
|
|
{
|
|
Task<Either<BaseError, Unit>> ScanCollections(string address, string apiKey, bool deepScan);
|
|
}
|