15 lines
402 B
C#
15 lines
402 B
C#
using Microsoft.SharePoint.Client;
|
|
using SharepointToolbox.Web.Core.Models;
|
|
|
|
namespace SharepointToolbox.Web.Services;
|
|
|
|
public interface IBulkMemberService
|
|
{
|
|
Task<BulkOperationSummary<BulkMemberRow>> AddMembersAsync(
|
|
ClientContext ctx,
|
|
TenantProfile profile,
|
|
IReadOnlyList<BulkMemberRow> rows,
|
|
IProgress<OperationProgress> progress,
|
|
CancellationToken ct);
|
|
}
|