13 lines
408 B
C#
13 lines
408 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Manager.YouTube.Models.Innertube;
|
|
|
|
public class ColorInfo
|
|
{
|
|
[JsonPropertyName("primaries")]
|
|
public string Primaries { get; set; } = "";
|
|
[JsonPropertyName("transferCharacteristics")]
|
|
public string TransferCharacteristics { get; set; } = "";
|
|
[JsonPropertyName("matrixCoefficients")]
|
|
public string MatrixCoefficients { get; set; } = "";
|
|
} |