Files
2026-06-02 10:56:03 +02:00

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);
}