Archived
1
0
Fork 0
This repository has been archived on 2024-05-21. You can view files and clone it, but cannot push or open issues or pull requests.
maki/Maki/Structures/Rest/MessageEdit.cs

15 lines
260 B
C#
Raw Permalink Normal View History

2017-05-20 01:29:03 +00:00
using Maki.Structures.Embeds;
using Newtonsoft.Json;
namespace Maki.Structures.Rest
{
internal struct MessageEdit
{
[JsonProperty("content")]
public string Text;
[JsonProperty("embed")]
public Embed? Embed;
}
}