namespace Manager.YouTube.Models.Innertube; public class StreamingFormat { public int Itag { get; set; } public string? Url { get; set; } public string MimeType { get; set; } = ""; public uint Bitrate { get; set; } public uint? Width { get; set; } public uint? Height { get; set; } public Range? InitRange { get; set; } public Range? IndexRange { get; set; } public long LastModified { get; set; } public long ContentLength { get; set; } public string Quality { get; set; } = ""; public string? Xtags { get; set; } public uint Fps { get; set; } public string QualityLabel { get; set; } = ""; public string ProjectionType { get; set; } = ""; public uint? AverageBitrate { get; set; } public bool? HighReplication { get; set; } public ColorInfo? ColorInfo { get; set; } public string? AudioQuality { get; set; } = ""; public long ApproxDurationMs { get; set; } public int? AudioSampleRate { get; set; } public int? AudioChannels { get; set; } public double? LoudnessDb { get; set; } public bool? IsDrc { get; set; } public string? SignatureCipher { get; set; } public string QualityOrdinal { get; set; } = ""; }