14 lines
361 B
C#
14 lines
361 B
C#
using Microsoft.SharePoint.Client;
|
|
using SharepointToolbox.Web.Core.Helpers;
|
|
using SharepointToolbox.Web.Core.Models;
|
|
|
|
namespace SharepointToolbox.Web.Services;
|
|
|
|
public interface ISystemGroupTargetResolver
|
|
{
|
|
Task<SystemGroupTarget?> ResolveAsync(
|
|
ClientContext ctx,
|
|
SystemGroupClassification classification,
|
|
CancellationToken ct);
|
|
}
|