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