Class EditModalModel.UserInfoViewModel
Inheritance
EditModalModel.UserInfoViewModel
Assembly: Volo.Abp.Identity.Pro.Web.dll
Syntax
public class EditModalModel.UserInfoViewModel : ExtensibleObject, IHasExtraProperties, IValidatableObject, IHasConcurrencyStamp
Constructors
UserInfoViewModel()
Declaration
public UserInfoViewModel()
Properties
ConcurrencyStamp
Declaration
[HiddenInput]
public string ConcurrencyStamp { get; set; }
Property Value
Email
Declaration
[Required]
[EmailAddress]
[DynamicStringLength(typeof(IdentityUserConsts), "MaxEmailLength", null)]
public string Email { get; set; }
Property Value
EmailConfirmed
Declaration
public bool EmailConfirmed { get; set; }
Property Value
Id
Declaration
[HiddenInput]
public Guid Id { get; set; }
Property Value
IsActive
Declaration
public bool IsActive { get; set; }
Property Value
IsExternal
Declaration
public bool IsExternal { get; set; }
Property Value
LockoutEnabled
Declaration
public bool LockoutEnabled { get; set; }
Property Value
Name
Declaration
[DynamicStringLength(typeof(IdentityUserConsts), "MaxNameLength", null)]
public string Name { get; set; }
Property Value
Password
Declaration
[DynamicStringLength(typeof(IdentityUserConsts), "MaxPasswordLength", null)]
[DataType(DataType.Password)]
[DisableAuditing]
public string Password { get; set; }
Property Value
PhoneNumber
Declaration
[DynamicStringLength(typeof(IdentityUserConsts), "MaxPhoneNumberLength", null)]
public string PhoneNumber { get; set; }
Property Value
PhoneNumberConfirmed
Declaration
public bool PhoneNumberConfirmed { get; set; }
Property Value
ShouldChangePasswordOnNextLogin
Declaration
public bool ShouldChangePasswordOnNextLogin { get; set; }
Property Value
Surname
Declaration
[DynamicStringLength(typeof(IdentityUserConsts), "MaxSurnameLength", null)]
public string Surname { get; set; }
Property Value
UserName
Declaration
[Required]
[DynamicStringLength(typeof(IdentityUserConsts), "MaxUserNameLength", null)]
public string UserName { get; set; }
Property Value
Implements
Extension Methods