You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
468 B
17 lines
468 B
4 years ago
|
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; }
|
||
|
}
|
||
|
}
|