41 lines
977 B
C#
41 lines
977 B
C#
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; }
|
|
}
|