namespace BTCPayServer.Client.Models
{
public class CreateApplicationUserRequest
{
///
/// the email AND username of the new user
///
public string Email { get; set; }
///
/// password of the new user
///
public string Password { get; set; }
///
/// 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.
///
public bool? IsAdministrator { get; set; }
}
}