1
0

28 lines
612 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; }
public bool? IsAdmin { get; set; }
public bool IsActive { get; set; }
}