Ajoute une zone d'administration des utilisateurs
This commit is contained in:
40
ChessCubing.App/Models/Users/AdminUserDetailResponse.cs
Normal file
40
ChessCubing.App/Models/Users/AdminUserDetailResponse.cs
Normal file
@@ -0,0 +1,40 @@
|
||||
namespace ChessCubing.App.Models.Users;
|
||||
|
||||
public sealed class AdminUserDetailResponse
|
||||
{
|
||||
public string Subject { get; set; } = string.Empty;
|
||||
|
||||
public string Username { get; set; } = string.Empty;
|
||||
|
||||
public string? Email { get; set; }
|
||||
|
||||
public string? FirstName { get; set; }
|
||||
|
||||
public string? LastName { get; set; }
|
||||
|
||||
public string IdentityDisplayName { get; set; } = string.Empty;
|
||||
|
||||
public bool IsEnabled { get; set; }
|
||||
|
||||
public bool IsEmailVerified { get; set; }
|
||||
|
||||
public DateTime? AccountCreatedUtc { get; set; }
|
||||
|
||||
public bool HasSiteProfile { get; set; }
|
||||
|
||||
public string DisplayName { get; set; } = string.Empty;
|
||||
|
||||
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; }
|
||||
|
||||
public DateTime? SiteProfileCreatedUtc { get; set; }
|
||||
|
||||
public DateTime? SiteProfileUpdatedUtc { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user