Ajoute une zone d'administration des utilisateurs
This commit is contained in:
30
ChessCubing.App/Models/Users/AdminUserSummaryResponse.cs
Normal file
30
ChessCubing.App/Models/Users/AdminUserSummaryResponse.cs
Normal file
@@ -0,0 +1,30 @@
|
||||
namespace ChessCubing.App.Models.Users;
|
||||
|
||||
public sealed class AdminUserSummaryResponse
|
||||
{
|
||||
public string Subject { get; set; } = string.Empty;
|
||||
|
||||
public string Username { get; set; } = string.Empty;
|
||||
|
||||
public string? Email { get; set; }
|
||||
|
||||
public string IdentityDisplayName { get; set; } = string.Empty;
|
||||
|
||||
public string? SiteDisplayName { get; set; }
|
||||
|
||||
public bool IsEnabled { get; set; }
|
||||
|
||||
public bool IsEmailVerified { get; set; }
|
||||
|
||||
public bool HasSiteProfile { get; set; }
|
||||
|
||||
public string? Club { get; set; }
|
||||
|
||||
public string? City { get; set; }
|
||||
|
||||
public string? PreferredFormat { get; set; }
|
||||
|
||||
public DateTime? AccountCreatedUtc { get; set; }
|
||||
|
||||
public DateTime? SiteProfileUpdatedUtc { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user