Class RegisterModel.PostInput
Inheritance
RegisterModel.PostInput
Assembly: Volo.Abp.Account.Web.dll
Syntax
public class RegisterModel.PostInput
Constructors
PostInput()
Declaration
Properties
EmailAddress
Declaration
[Required]
[EmailAddress]
[DynamicStringLength(typeof(IdentityUserConsts), "MaxEmailLength", null)]
public string EmailAddress { get; set; }
Property Value
Password
Declaration
[Required]
[DynamicStringLength(typeof(IdentityUserConsts), "MaxPasswordLength", null)]
[DataType(DataType.Password)]
[DisableAuditing]
public string Password { get; set; }
Property Value
UserName
Declaration
[Required]
[DynamicStringLength(typeof(IdentityUserConsts), "MaxUserNameLength", null)]
public string UserName { get; set; }
Property Value
Extension Methods