mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-21 10:01:27 -07:00
support for nested and dynamically-typed json fields, and games now have greater liberty over how the rich presence can be configured
11 lines
231 B
C#
11 lines
231 B
C#
namespace Bloxstrap.Models.BloxstrapRPC;
|
|
|
|
public class Message
|
|
{
|
|
[JsonPropertyName("command")]
|
|
public string Command { get; set; } = null!;
|
|
|
|
[JsonPropertyName("data")]
|
|
public JsonElement Data { get; set; }
|
|
}
|