RegisterUserDto
Namespace: Meshmakers.Octo.Communication.Contracts.DataTransferObjects
Represents an user during first registration
public class RegisterUserDto : UserDto
Inheritance Object → UserDto → RegisterUserDto
Properties
Password
The user password. This is only transferred when creating a new user.
public string Password { get; set; }
Property Value
FirstName
Gets or sets the first name
public string FirstName { get; set; }
Property Value
LastName
Gets or sets the last name
public string LastName { get; set; }
Property Value
UserId
Gets or sets the user id
public string UserId { get; set; }
Property Value
Email
Gets or sets the E-Mail address of the user
public string Email { get; set; }
Property Value
Name
Gets or sets the display name
public string Name { get; set; }
Property Value
ResetPasswordOnLogin
User is requested to reset password on log-in
public bool ResetPasswordOnLogin { get; set; }
Property Value
Constructors
RegisterUserDto()
public RegisterUserDto()