Class MemberUpdateModel
Represents a model for updating a member.
Namespace: Umbraco.Cms.Core.Models.ContentEditing
Assembly: Umbraco.Core.dll
Syntax
public class MemberUpdateModel : MemberEditingModelBase
Constructors
View SourceMemberUpdateModel()
Declaration
public MemberUpdateModel()
Properties
View SourceIsLockedOut
Gets or sets a value indicating whether the member is locked out.
Declaration
public bool IsLockedOut { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
IsTwoFactorEnabled
Gets or sets a value indicating whether two-factor authentication is enabled for the member.
Declaration
public bool IsTwoFactorEnabled { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
NewPassword
Gets or sets the new password to set for the member.
Declaration
public string? NewPassword { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
OldPassword
Gets or sets the old password for password change verification.
Declaration
public string? OldPassword { get; set; }
Property Value
| Type | Description |
|---|---|
| string |