using System.Text.Json.Serialization; namespace Manager.YouTube.Models.Innertube; public class StreamingData { public DateTime FetchedUtc { get; set; } = DateTime.UtcNow; [JsonPropertyName("expiresInSeconds")] public int ExpiresInSeconds { get; set; } [JsonPropertyName("serverAbrStreamingUrl")] public string ServerAbrStreamingUrl { get; set; } = ""; [JsonPropertyName("formats")] public List Formats { get; set; } = []; [JsonPropertyName("adaptiveFormats")] public List AdaptiveFormats { get; set; } = []; }