using Microsoft.SharePoint.Client; using SharepointToolbox.Core.Models; namespace SharepointToolbox.Services; public interface IBulkMemberService { Task> AddMembersAsync( ClientContext ctx, string clientId, IReadOnlyList rows, IProgress progress, CancellationToken ct); }