Class UserEntity
Class to hold information about a given user
Inheritance
System.Object
UserEntity
Namespace: PnP.Framework.Modernization.Entities
Assembly: PnP.Framework.dll
Syntax
public class UserEntity : object
Properties
Id
Id of the user
Declaration
public string Id { get; set; }
Property Value
System.String
|
IsGroup
Is this a group?
Declaration
public bool IsGroup { get; set; }
Property Value
System.Boolean
|
LoginName
Loginname of the user
Declaration
public string LoginName { get; set; }
Property Value
System.String
|
Name
Name of the user
Declaration
public string Name { get; set; }
Property Value
System.String
|
Role
Role of the user
Declaration
public string Role { get; set; }
Property Value
System.String
|
Upn
Upn of the user
Declaration
public string Upn { get; set; }
Property Value
System.String
|