UserDto
Namespace: Meshmakers.Octo.Communication.Contracts.DataTransferObjects
Represents an user
public class UserDto
Properties
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
UserDto()
public UserDto()