15 lines
260 B
C#
15 lines
260 B
C#
|
using Maki.Structures.Embeds;
|
|||
|
using Newtonsoft.Json;
|
|||
|
|
|||
|
namespace Maki.Structures.Rest
|
|||
|
{
|
|||
|
internal struct MessageEdit
|
|||
|
{
|
|||
|
[JsonProperty("content")]
|
|||
|
public string Text;
|
|||
|
|
|||
|
[JsonProperty("embed")]
|
|||
|
public Embed? Embed;
|
|||
|
}
|
|||
|
}
|