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/Embeds/EmbedFooter.cs
2017-05-14 14:02:51 +02:00

29 lines
663 B
C#

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