bloxstrap/Bloxstrap/Models/BloxstrapRPC/RichPresenceImage.cs
2023-07-31 10:42:13 +01:00

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;
}
}