Class MemberEditingModelBase
Represents the base model for member editing operations.
Namespace: Umbraco.Cms.Core.Models.ContentEditing
Assembly: Umbraco.Core.dll
Syntax
public abstract class MemberEditingModelBase : ContentEditingModelBase
Constructors
View SourceMemberEditingModelBase()
Declaration
protected MemberEditingModelBase()
Properties
View SourceGets or sets the email address of the member.
Declaration
public string Email { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
IsApproved
Gets or sets a value indicating whether the member is approved.
Declaration
public bool IsApproved { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
Roles
Gets or sets the collection of role keys assigned to the member.
Declaration
public IEnumerable<Guid>? Roles { get; set; }
Property Value
| Type | Description |
|---|---|
| IEnumerable<Guid> |
Username
Gets or sets the username of the member.
Declaration
public string Username { get; set; }
Property Value
| Type | Description |
|---|---|
| string |