export ApplicationUser

interface ApplicationUser {
    AccessFailedCount?: number;
    AuthObjectId?: null | string;
    ConcurrencyStamp?: null | string;
    Email?: null | string;
    EmailConfirmed?: boolean;
    Id?: null | string;
    IsAutoRegistered?: boolean;
    LastActivityDateTime?: null | string;
    LastLoginDateTime?: null | string;
    LockoutEnabled?: boolean;
    LockoutEnd?: null | string;
    NormalizedEmail?: null | string;
    NormalizedUserName?: null | string;
    PasswordHash?: null | string;
    PhoneNumber?: null | string;
    PhoneNumberConfirmed?: boolean;
    RequiresPassword?: boolean;
    SecurityStamp?: null | string;
    TwoFactorEnabled?: boolean;
    UserName?: null | string;
}

Properties

AccessFailedCount?: number
AuthObjectId?: null | string
ConcurrencyStamp?: null | string
Email?: null | string
EmailConfirmed?: boolean
Id?: null | string
IsAutoRegistered?: boolean
LastActivityDateTime?: null | string
LastLoginDateTime?: null | string
LockoutEnabled?: boolean
LockoutEnd?: null | string
NormalizedEmail?: null | string
NormalizedUserName?: null | string
PasswordHash?: null | string
PhoneNumber?: null | string
PhoneNumberConfirmed?: boolean
RequiresPassword?: boolean
SecurityStamp?: null | string
TwoFactorEnabled?: boolean
UserName?: null | string