Files
ersatztv/ErsatzTV.Core/Interfaces/Plex/IPlexCollectionScanner.cs
T

14 lines
331 B
C#

using ErsatzTV.Core.Domain;
using ErsatzTV.Core.Plex;
namespace ErsatzTV.Core.Interfaces.Plex;
public interface IPlexCollectionScanner
{
Task<Either<BaseError, Unit>> ScanCollections(
PlexConnection connection,
PlexServerAuthToken token,
bool deepScan,
CancellationToken cancellationToken);
}