using Newtonsoft.Json;
namespace Maki.Structures.Embeds
{
///
/// Discord API Embed Image and Thumbnail structure
///
internal struct EmbedImage
{
///
/// source url of thumbnail (only supports http(s) and attachments)
///
[JsonProperty("url")]
public string Url;
///
/// a proxied url of the thumbnail
///
[JsonProperty("proxy_url")]
public string ProxyUrl;
///
/// height of thumbnail
///
[JsonProperty("height")]
public int Height;
///
/// width of thumbnail
///
[JsonProperty("width")]
public int Width;
}
}