24 lines
524 B
C#
24 lines
524 B
C#
using Flawless.Communication.Shared;
|
|
|
|
namespace Flawless.Communication.Response;
|
|
|
|
public record UserInfoResponse
|
|
{
|
|
public bool Authorized { get; set; }
|
|
|
|
public string? Username { get; set; }
|
|
|
|
public string? NickName { get; set; }
|
|
|
|
public UserSex? Gender { get; set; }
|
|
|
|
public string? Bio { get; set; }
|
|
|
|
public string? Email { get; set; }
|
|
|
|
public string? Phone { get; set; }
|
|
|
|
public bool? PublicEmail { get; set; }
|
|
|
|
public DateTime? CreatedAt { get; set; }
|
|
} |