This would cause the large asset's Image ID (and in turn, Image URL) and hover text to be reversed.
17 lines
468 B
C#
17 lines
468 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace Discord.API
|
|
{
|
|
internal class GameAssets
|
|
{
|
|
[JsonProperty("small_text")]
|
|
public Optional<string> SmallText { get; set; }
|
|
[JsonProperty("small_image")]
|
|
public Optional<string> SmallImage { get; set; }
|
|
[JsonProperty("large_text")]
|
|
public Optional<string> LargeText { get; set; }
|
|
[JsonProperty("large_image")]
|
|
public Optional<string> LargeImage { get; set; }
|
|
}
|
|
}
|