31 lines
737 B
C#
31 lines
737 B
C#
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; }
|
|
}
|