namespace SharepointToolbox.Core.Models; /// /// Represents a directory user returned by . /// Used by Phase 13's User Directory ViewModel to display and filter tenant members. /// public record GraphDirectoryUser( string DisplayName, string UserPrincipalName, string? Mail, string? Department, string? JobTitle);