namespace SharepointToolbox.Core.Models; /// /// Flat record representing one permission assignment on a SharePoint object. /// Mirrors the $entry object built by the PowerShell Generate-PnPSitePermissionRpt function. /// public record PermissionEntry( string ObjectType, // "Site Collection" | "Site" | "List" | "Folder" string Title, string Url, bool HasUniquePermissions, string Users, // Semicolon-joined display names string UserLogins, // Semicolon-joined login names string PermissionLevels, // Semicolon-joined role names (Limited Access already removed) string GrantedThrough, // "Direct Permissions" | "SharePoint Group: " string PrincipalType // "SharePointGroup" | "User" | "External User" );