mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-18 16:41:36 -07:00
support for nested and dynamically-typed json fields, and games now have greater liberty over how the rich presence can be configured
12 lines
257 B
C#
12 lines
257 B
C#
namespace Bloxstrap.Models.BloxstrapRPC
|
|
{
|
|
class RichPresenceImage
|
|
{
|
|
[JsonPropertyName("assetId")]
|
|
public ulong? AssetId { get; set; }
|
|
|
|
[JsonPropertyName("hoverText")]
|
|
public string? HoverText { get; set; }
|
|
}
|
|
}
|