Interface IListUser
Represents a combined user and person.
Inherited Members
Namespace: IRM.AspNetCore.Identity
Assembly: IRM.AspNetCore.Identity.dll
Syntax
public interface IListUser : IPerson, IPersonName, IEventAggregate, IUserIdentifiers, IUniqueIdentifier, IHaveEmail
Properties
IsLockedOut
Gets or sets a flag indicating if the user is locked out or not.
Declaration
bool IsLockedOut { get; set; }
Property Value
Boolean
True if the user is locked out, otherwise false. |
IsValid
Gets if the user is valid to sign-in.
Declaration
bool IsValid { get; set; }
Property Value
Boolean
True if the user is valid to sign-in; otherwise false. |
OrganisationName
Gets or sets the name of the organisation (if the person belongs to one)
Declaration
string OrganisationName { get; set; }
Property Value
String
|