21 lines
379 B
C#
21 lines
379 B
C#
|
using Maki.Structures.Embeds;
|
|||
|
using Newtonsoft.Json;
|
|||
|
|
|||
|
namespace Maki.Structures.Rest
|
|||
|
{
|
|||
|
internal struct MessageCreate
|
|||
|
{
|
|||
|
[JsonProperty("content")]
|
|||
|
public string Text;
|
|||
|
|
|||
|
[JsonProperty("nonce")]
|
|||
|
public long? Nonce;
|
|||
|
|
|||
|
[JsonProperty("tts")]
|
|||
|
public bool TTS;
|
|||
|
|
|||
|
[JsonProperty("embed")]
|
|||
|
public Embed? Embed;
|
|||
|
}
|
|||
|
}
|