27 lines
561 B
C#
27 lines
561 B
C#
namespace ChessCubing.App.Models.Users;
|
|
|
|
public sealed class AdminUpdateUserRequest
|
|
{
|
|
public string? Email { get; set; }
|
|
|
|
public string? FirstName { get; set; }
|
|
|
|
public string? LastName { get; set; }
|
|
|
|
public bool IsEnabled { get; set; }
|
|
|
|
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; }
|
|
}
|