14 lines
260 B
C#
14 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;
|
|
}
|
|
}
|