Skip to main content

RegisterUserDto

Namespace: Meshmakers.Octo.Communication.Contracts.DataTransferObjects

Represents an user during first registration

public class RegisterUserDto : UserDto

Inheritance ObjectUserDtoRegisterUserDto

Properties

Password

The user password. This is only transferred when creating a new user.

public string Password { get; set; }

Property Value

String

FirstName

Gets or sets the first name

public string FirstName { get; set; }

Property Value

String

LastName

Gets or sets the last name

public string LastName { get; set; }

Property Value

String

UserId

Gets or sets the user id

public string UserId { get; set; }

Property Value

String

Email

Gets or sets the E-Mail address of the user

public string Email { get; set; }

Property Value

String

Name

Gets or sets the display name

public string Name { get; set; }

Property Value

String

ResetPasswordOnLogin

User is requested to reset password on log-in

public bool ResetPasswordOnLogin { get; set; }

Property Value

Boolean

Constructors

RegisterUserDto()

public RegisterUserDto()