13 lines
341 B
C#
13 lines
341 B
C#
using SharepointToolbox.Web.Core.Models;
|
|
|
|
namespace SharepointToolbox.Web.Services;
|
|
|
|
public interface IGraphUserDirectoryService
|
|
{
|
|
Task<IReadOnlyList<GraphDirectoryUser>> GetUsersAsync(
|
|
TenantProfile profile,
|
|
bool includeGuests = false,
|
|
IProgress<int>? progress = null,
|
|
CancellationToken ct = default);
|
|
}
|