mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-07-05 20:30:00 -07:00
Create UserInfoResponse.cs
This commit is contained in:
parent
8656d9dad4
commit
4acab1737e
26
Bloxstrap/Models/RobloxApi/UserInfoResponse.cs
Normal file
26
Bloxstrap/Models/RobloxApi/UserInfoResponse.cs
Normal file
@ -0,0 +1,26 @@
|
||||
namespace Bloxstrap.Models.RobloxApi
|
||||
{
|
||||
/// <summary>
|
||||
/// Roblox.Web.Responses.Users.UserInfoResponse
|
||||
/// </summary>
|
||||
public class UserInfoResponse
|
||||
{
|
||||
[JsonPropertyName("description")]
|
||||
public string ProfileDescription { get; set; }
|
||||
|
||||
[JsonPropertyName("created")]
|
||||
public string JoinDate { get; set; };
|
||||
|
||||
[JsonPropertyName("isBanned")]
|
||||
public bool IsBanned { get; set; };
|
||||
|
||||
[JsonPropertyName("hasVerifiedBadge")]
|
||||
public bool HasVerifiedBadge { get; set; };
|
||||
|
||||
[JsonPropertyName("name")]
|
||||
public string Username { get; set; };
|
||||
|
||||
[JsonPropertyName("displayName")]
|
||||
public string DisplayName { get; set; };
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user