mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 09:54:30 +01:00
21 lines
603 B
C#
21 lines
603 B
C#
namespace BTCPayServer.Client.Models
|
|
{
|
|
public class CreateApplicationUserRequest
|
|
{
|
|
/// <summary>
|
|
/// the email AND username of the new user
|
|
/// </summary>
|
|
public string Email { get; set; }
|
|
|
|
/// <summary>
|
|
/// password of the new user
|
|
/// </summary>
|
|
public string Password { get; set; }
|
|
|
|
/// <summary>
|
|
/// Whether this user is an administrator. If left null and there are no admins in the system, the user will be created as an admin.
|
|
/// </summary>
|
|
public bool? IsAdministrator { get; set; }
|
|
}
|
|
}
|