Class AccountProfilePasswordManagementGroupViewComponent.ChangePasswordInfoModel
Inheritance
AccountProfilePasswordManagementGroupViewComponent.ChangePasswordInfoModel
Assembly: Volo.Abp.Account.Pro.Public.Web.dll
Syntax
public class AccountProfilePasswordManagementGroupViewComponent.ChangePasswordInfoModel
Constructors
ChangePasswordInfoModel()
Declaration
public ChangePasswordInfoModel()
Properties
CurrentPassword
Declaration
[Required]
[DynamicStringLength(typeof(IdentityUserConsts), "MaxPasswordLength", null)]
[Display(Name = "DisplayName:CurrentPassword")]
[DataType(DataType.Password)]
[DisableAuditing]
public string CurrentPassword { get; set; }
Property Value
HideOldPasswordInput
Declaration
public bool HideOldPasswordInput { get; set; }
Property Value
NewPassword
Declaration
[Required]
[DynamicStringLength(typeof(IdentityUserConsts), "MaxPasswordLength", null)]
[Display(Name = "DisplayName:NewPassword")]
[DataType(DataType.Password)]
[DisableAuditing]
public string NewPassword { get; set; }
Property Value
NewPasswordConfirm
Declaration
[Required]
[DynamicStringLength(typeof(IdentityUserConsts), "MaxPasswordLength", null)]
[Display(Name = "DisplayName:NewPasswordConfirm")]
[DataType(DataType.Password)]
[DisableAuditing]
public string NewPasswordConfirm { get; set; }
Property Value
Extension Methods