Class MemberExportModel
Represents the model for exporting member data.
Inheritance
object
Namespace: Umbraco.Cms.Core.Models.Membership
Assembly: Umbraco.Core.dll
Syntax
public class MemberExportModel
Constructors
View SourceMemberExportModel()
Declaration
public MemberExportModel()
Properties
View SourceContentTypeAlias
Gets or sets the content type alias of the member.
Declaration
public string? ContentTypeAlias { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
CreateDate
Gets or sets the date and time when the member was created.
Declaration
public DateTime CreateDate { get; set; }
Property Value
| Type | Description |
|---|---|
| DateTime |
Gets or sets the email address of the member.
Declaration
public string? Email { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Groups
Gets or sets the list of group names the member belongs to.
Declaration
public List<string> Groups { get; set; }
Property Value
| Type | Description |
|---|---|
| List<string> |
Id
Gets or sets the unique identifier for the member.
Declaration
public int Id { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
Key
Gets or sets the unique key for the member.
Declaration
public Guid Key { get; set; }
Property Value
| Type | Description |
|---|---|
| Guid |
Name
Gets or sets the name of the member.
Declaration
public string? Name { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Properties
Gets or sets the list of custom properties for the member.
Declaration
public List<MemberExportProperty> Properties { get; set; }
Property Value
| Type | Description |
|---|---|
| List<MemberExportProperty> |
UpdateDate
Gets or sets the date and time when the member was last updated.
Declaration
public DateTime UpdateDate { get; set; }
Property Value
| Type | Description |
|---|---|
| DateTime |
Username
Gets or sets the username of the member.
Declaration
public string? Username { get; set; }
Property Value
| Type | Description |
|---|---|
| string |