using Microsoft.SharePoint.Client; using SharepointToolbox.Web.Core.Models; namespace SharepointToolbox.Web.Services; public interface ISharePointGroupResolver { Task>> ResolveGroupsAsync( ClientContext ctx, TenantProfile profile, IReadOnlyList groupNames, CancellationToken ct); }