using Microsoft.SharePoint.Client; using SharepointToolbox.Core.Models; namespace SharepointToolbox.Services; public interface IBulkSiteService { Task> CreateSitesAsync( ClientContext adminCtx, IReadOnlyList rows, IProgress progress, CancellationToken ct); }