using Newtonsoft.Json; namespace Maki.Structures.Embeds { /// /// Discord API Embed Author structure /// internal struct EmbedAuthor { /// /// name of author /// [JsonProperty("name")] public string Name; /// /// url of author /// [JsonProperty("url")] public string Url; /// /// url of author icon (only supports http(s) and attachments) /// [JsonProperty("icon_url")] public string IconUrl; /// /// a proxied url of author icon /// [JsonProperty("proxy_icon_url")] public string ProxyIconUrl; } }