Interface IUserIdentifiers
Represents different identifiers of an user.
Namespace: IRM.AspNetCore.Identity
Assembly: IRM.AspNetCore.Identity.dll
Syntax
public interface IUserIdentifiers : IUniqueIdentifier, IHaveEmail
Properties
IsSystemUser
Gets or sets if the user is a system or not.
Declaration
bool IsSystemUser { get; set; }
Property Value
Boolean
true if the user is a system; false if the user is human. |
UserName
Gets or sets the user name for this user.
Declaration
string UserName { get; set; }
Property Value
String
|