using Newtonsoft.Json; namespace Maki.Structures.Embeds { /// /// Discord API Embed Field structure /// internal struct EmbedField { /// /// name of the field /// [JsonProperty("name")] public string Name; /// /// value of the field /// [JsonProperty("value")] public string Value; /// /// whether or not this field should display inline /// [JsonProperty("inline")] public bool Inline; } }