mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-13 16:51:29 -07:00
40 lines
1.1 KiB
C#
40 lines
1.1 KiB
C#
namespace Bloxstrap.Models.APIs.Roblox
|
|
{
|
|
/// <summary>
|
|
/// Roblox.Games.Api.Models.Response.GameCreator
|
|
/// Response model for getting the game creator
|
|
/// </summary>
|
|
public class GameCreator
|
|
{
|
|
/// <summary>
|
|
/// The game creator id
|
|
/// </summary>
|
|
[JsonPropertyName("id")]
|
|
public long Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// The game creator name
|
|
/// </summary>
|
|
[JsonPropertyName("name")]
|
|
public string Name { get; set; } = null!;
|
|
|
|
/// <summary>
|
|
/// The game creator type
|
|
/// </summary>
|
|
[JsonPropertyName("type")]
|
|
public string Type { get; set; } = null!;
|
|
|
|
/// <summary>
|
|
/// The game creator account is Luobu Real Name Verified
|
|
/// </summary>
|
|
[JsonPropertyName("isRNVAccount")]
|
|
public bool IsRNVAccount { get; set; }
|
|
|
|
/// <summary>
|
|
/// Builder verified badge status.
|
|
/// </summary>
|
|
[JsonPropertyName("hasVerifiedBadge")]
|
|
public bool HasVerifiedBadge { get; set; }
|
|
}
|
|
}
|