14 lines
386 B
C#
14 lines
386 B
C#
using Microsoft.SharePoint.Client;
|
|
using SharepointToolbox.Web.Core.Models;
|
|
|
|
namespace SharepointToolbox.Web.Services;
|
|
|
|
public interface ISharePointGroupResolver
|
|
{
|
|
Task<IReadOnlyDictionary<string, IReadOnlyList<ResolvedMember>>> ResolveGroupsAsync(
|
|
ClientContext ctx,
|
|
TenantProfile profile,
|
|
IReadOnlyList<string> groupNames,
|
|
CancellationToken ct);
|
|
}
|