33 lines
750 B
C#
33 lines
750 B
C#
namespace ChessCubing.App.Models.Users;
|
|
|
|
public sealed class AdminCreateUserRequest
|
|
{
|
|
public string Username { get; set; } = string.Empty;
|
|
|
|
public string? Email { get; set; }
|
|
|
|
public string Password { get; set; } = string.Empty;
|
|
|
|
public string ConfirmPassword { get; set; } = string.Empty;
|
|
|
|
public string? FirstName { get; set; }
|
|
|
|
public string? LastName { get; set; }
|
|
|
|
public bool IsEnabled { get; set; } = true;
|
|
|
|
public bool IsEmailVerified { get; set; }
|
|
|
|
public string? DisplayName { get; set; }
|
|
|
|
public string? Club { get; set; }
|
|
|
|
public string? City { get; set; }
|
|
|
|
public string? PreferredFormat { get; set; }
|
|
|
|
public string? FavoriteCube { get; set; }
|
|
|
|
public string? Bio { get; set; }
|
|
}
|