Class UpdateProfileDto
Inheritance
UpdateProfileDto
Assembly: Volo.Abp.Account.Application.Contracts.dll
Syntax
public class UpdateProfileDto : ExtensibleObject, IHasExtraProperties, IValidatableObject
Constructors
UpdateProfileDto()
Declaration
public UpdateProfileDto()
Properties
ConcurrencyStamp
Declaration
public string ConcurrencyStamp { get; set; }
Property Value
Email
Declaration
[DynamicStringLength(typeof(IdentityUserConsts), "MaxEmailLength", null)]
public string Email { get; set; }
Property Value
Name
Declaration
[DynamicStringLength(typeof(IdentityUserConsts), "MaxNameLength", null)]
public string Name { get; set; }
Property Value
PhoneNumber
Declaration
[DynamicStringLength(typeof(IdentityUserConsts), "MaxPhoneNumberLength", null)]
public string PhoneNumber { get; set; }
Property Value
Surname
Declaration
[DynamicStringLength(typeof(IdentityUserConsts), "MaxSurnameLength", null)]
public string Surname { get; set; }
Property Value
Timezone
Declaration
public string Timezone { get; set; }
Property Value
UserName
Declaration
[DynamicStringLength(typeof(IdentityUserConsts), "MaxUserNameLength", null)]
public string UserName { get; set; }
Property Value
Implements
Extension Methods