Ajoute une zone d'administration des utilisateurs
This commit is contained in:
28
ChessCubing.App/Models/Users/AdminUpdateUserRequest.cs
Normal file
28
ChessCubing.App/Models/Users/AdminUpdateUserRequest.cs
Normal file
@@ -0,0 +1,28 @@
|
||||
namespace ChessCubing.App.Models.Users;
|
||||
|
||||
public sealed class AdminUpdateUserRequest
|
||||
{
|
||||
public string Username { get; set; } = string.Empty;
|
||||
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user