27 lines
605 B
C#
27 lines
605 B
C#
namespace ChessCubing.App.Models.Users;
|
|
|
|
public sealed class UserProfileResponse
|
|
{
|
|
public string Subject { get; set; } = string.Empty;
|
|
|
|
public string Username { get; set; } = string.Empty;
|
|
|
|
public string? Email { 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 CreatedUtc { get; set; }
|
|
|
|
public DateTime UpdatedUtc { get; set; }
|
|
}
|