using System.Text.Json.Serialization;
namespace Geekbot.Core.Interactions.Embed
{
///
public record EmbedVideo
{
///
/// source url of video
///
[JsonPropertyName("url")]
public string Url { get; set; }
///
/// a proxied url of the video
///
[JsonPropertyName("proxy_url")]
public string ProxyUrl { get; set; }
///
/// height of video
///
[JsonPropertyName("height")]
public int Height { get; set; }
///
/// width of video
///
[JsonPropertyName("width")]
public int Width { get; set; }
}
}