- StorageNode, StorageScanOptions models - SearchResult, SearchOptions models - DuplicateItem, DuplicateGroup, DuplicateScanOptions models - IStorageService, ISearchService, IDuplicatesService interfaces
14 lines
356 B
C#
14 lines
356 B
C#
using Microsoft.SharePoint.Client;
|
|
using SharepointToolbox.Core.Models;
|
|
|
|
namespace SharepointToolbox.Services;
|
|
|
|
public interface IDuplicatesService
|
|
{
|
|
Task<IReadOnlyList<DuplicateGroup>> ScanDuplicatesAsync(
|
|
ClientContext ctx,
|
|
DuplicateScanOptions options,
|
|
IProgress<OperationProgress> progress,
|
|
CancellationToken ct);
|
|
}
|