using Newtonsoft.Json; namespace Maki.Structures.Embeds { /// /// Discord API Embed Video structure /// internal struct EmbedVideo { /// /// source url of video /// [JsonProperty("url")] public string Url; /// /// height of video /// [JsonProperty("height")] public int Height; /// /// width of video /// [JsonProperty("width")] public int Width; } }