12 lines
348 B
C#
12 lines
348 B
C#
using Microsoft.SharePoint.Client;
|
|
using SharepointToolbox.Web.Core.Models;
|
|
|
|
namespace SharepointToolbox.Web.Services;
|
|
|
|
public interface IDuplicatesService
|
|
{
|
|
Task<IReadOnlyList<DuplicateGroup>> ScanDuplicatesAsync(
|
|
ClientContext ctx, DuplicateScanOptions options,
|
|
IProgress<OperationProgress> progress, CancellationToken ct);
|
|
}
|