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