13 lines
317 B
C#
13 lines
317 B
C#
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; } = "";
|
|
} |