Class RegisterDto
Assembly: Volo.Abp.Account.Application.Contracts.dll
Syntax
public class RegisterDto : ExtensibleObject, IHasExtraProperties, IValidatableObject
Constructors
RegisterDto()
Declaration
Properties
AppName
Declaration
[Required]
public string AppName { get; set; }
Property Value
CaptchaResponse
Declaration
[DisableAuditing]
public string CaptchaResponse { get; set; }
Property Value
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
ReturnUrl
Declaration
public string ReturnUrl { get; set; }
Property Value
ReturnUrlHash
Declaration
public string ReturnUrlHash { get; set; }
Property Value
UserName
Declaration
[Required]
[DynamicStringLength(typeof(IdentityUserConsts), "MaxUserNameLength", null)]
public string UserName { get; set; }
Property Value
Implements
Extension Methods