Search Results for

    Show / Hide Table of Contents
    View Source

    Class UserCreateModel

    Represents the model used for creating a new user.

    Inheritance
    object
    Namespace: Umbraco.Cms.Core.Models
    Assembly: Umbraco.Core.dll
    Syntax
    public class UserCreateModel

    Constructors

    View Source

    UserCreateModel()

    Declaration
    public UserCreateModel()

    Properties

    View Source

    Email

    Gets or sets the email address of the user.

    Declaration
    public string Email { get; set; }
    Property Value
    Type Description
    string
    View Source

    Id

    Gets or sets the optional unique identifier for the user.

    Declaration
    public Guid? Id { get; set; }
    Property Value
    Type Description
    Guid?

    The user's GUID, or null to auto-generate one.

    View Source

    Kind

    Gets or sets the kind/type of user being created.

    Declaration
    public UserKind Kind { get; set; }
    Property Value
    Type Description
    UserKind
    View Source

    Name

    Gets or sets the display name of the user.

    Declaration
    public string Name { get; set; }
    Property Value
    Type Description
    string
    View Source

    UserGroupKeys

    Gets or sets the collection of user group keys the user should be assigned to.

    Declaration
    public ISet<Guid> UserGroupKeys { get; set; }
    Property Value
    Type Description
    ISet<Guid>
    View Source

    UserName

    Gets or sets the username for the user.

    Declaration
    public string UserName { get; set; }
    Property Value
    Type Description
    string
    • View Source
    In this article
    Back to top Copyright © 2016-present Umbraco
    Generated by DocFX