using Newtonsoft.Json; namespace MahTweets.Extensions.MediaProviders { public class OEmbedResult { [JsonProperty("provider_url")] public string ProviderUrl { get; set; } [JsonProperty("provider_name")] public string Providername { get; set; } [JsonProperty("author_name")] public string AuthorName { get; set; } [JsonProperty("author_url")] public string AuthorUrl { get; set; } public string Description { get; set; } public string Title { get; set; } public string Url { get; set; } public int Height { get; set; } public int Width { get; set; } public string Version { get; set; } public string Type { get; set; } [JsonProperty("thumbnail_height")] public int ThumbnailHeight { get; set; } [JsonProperty("thumbnail_width")] public int ThumbnailWidth { get; set; } [JsonProperty("thumbnail_url")] public string ThumbnailUrl { get; set; } public string Html { get; set; } } }