Class LocalUserRequestModel
Model representing a new local user.
public class LocalUserRequestModel : LocalUserModelBase
- Inheritance
-
LocalUserRequestModel
- Inherited Members
Properties
Name
Name of user
[JsonProperty("Name", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string Name { get; set; }
Property Value
Password
The initial password for the user. They will have to change it when they first log in.
[JsonProperty("Password", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string Password { get; set; }