mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-18 16:41:36 -07:00
18 lines
429 B
C#
18 lines
429 B
C#
namespace Bloxstrap.Models.BloxstrapRPC
|
|
{
|
|
class RichPresenceImage
|
|
{
|
|
[JsonPropertyName("assetId")]
|
|
public ulong? AssetId { get; set; }
|
|
|
|
[JsonPropertyName("hoverText")]
|
|
public string? HoverText { get; set; }
|
|
|
|
[JsonPropertyName("clear")]
|
|
public bool Clear { get; set; } = false;
|
|
|
|
[JsonPropertyName("reset")]
|
|
public bool Reset { get; set; } = false;
|
|
}
|
|
}
|