Interface IIdentityUser
Application Identity User interface.
Namespace: Cireson.Core.Interfaces.DataAccess
Assembly: Cireson.Core.Interfaces.dll
Syntax
public interface IIdentityUser
Remarks
Admin, 8/24/2017.
Properties
View SourceClaims
Gets or sets the claims.
Declaration
ICollection<IdentityUserClaim> Claims { get; set; }
Property Value
Type | Description |
---|---|
ICollection<IdentityUserClaim> | The claims. |
Gets or sets the email.
Declaration
string Email { get; set; }
Property Value
Type | Description |
---|---|
System.String | The email. |
PhoneNumber
Gets or sets the phone number.
Declaration
string PhoneNumber { get; set; }
Property Value
Type | Description |
---|---|
System.String | The phone number. |
UserName
Gets or sets the name of the user.
Declaration
string UserName { get; set; }
Property Value
Type | Description |
---|---|
System.String | The name of the user. |