using System.Text.Json.Serialization; namespace Manager.YouTube.Models.Innertube; public class WebImage { [JsonPropertyName("width")] public int Width { get; set; } [JsonPropertyName("height")] public int Height { get; set; } [JsonPropertyName("url")] public string Url { get; set; } = ""; }