mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-22 18:41:26 -07:00
27 lines
768 B
C#
27 lines
768 B
C#
namespace Bloxstrap.Models.RobloxApi
|
|
{
|
|
/// <summary>
|
|
/// Roblox.Web.Responses.Users.UserInfoResponse
|
|
/// </summary>
|
|
public class UserInfoResponse
|
|
{
|
|
[JsonPropertyName("description")]
|
|
public string ProfileDescription { get; set; } = null!;
|
|
|
|
[JsonPropertyName("created")]
|
|
public string JoinDate { get; set; } = null!;
|
|
|
|
[JsonPropertyName("isBanned")]
|
|
public bool IsBanned { get; set; } = null!;
|
|
|
|
[JsonPropertyName("hasVerifiedBadge")]
|
|
public bool HasVerifiedBadge { get; set; } = null!;
|
|
|
|
[JsonPropertyName("name")]
|
|
public string Username { get; set; } = null!;
|
|
|
|
[JsonPropertyName("displayName")]
|
|
public string DisplayName { get; set; } = null!;
|
|
}
|
|
}
|