10 lines
221 B
C#
10 lines
221 B
C#
namespace SharepointToolbox.Web.Core.Models;
|
|
|
|
public record GraphDirectoryUser(
|
|
string DisplayName,
|
|
string UserPrincipalName,
|
|
string? Mail,
|
|
string? Department,
|
|
string? JobTitle,
|
|
string? UserType);
|