using Newtonsoft.Json;
namespace Maki.Structures.Embeds
{
///
/// Discord API Embed Footer structure
///
internal struct EmbedFooter
{
///
/// footer text
///
[JsonProperty("text")]
public string Text;
///
/// url of footer icon (only supports http(s) and attachments)
///
[JsonProperty("icon_url")]
public string IconUrl;
///
/// a proxied url of footer icon
///
[JsonProperty("proxy_icon_url")]
public string ProxyIconUrl;
}
}