10 lines
375 B
C#
10 lines
375 B
C#
namespace Manager.YouTube.Models.Innertube;
|
|
|
|
public class StreamingData
|
|
{
|
|
public DateTime FetchedUtc { get; set; } = DateTime.UtcNow;
|
|
public int ExpiresInSeconds { get; set; }
|
|
public string ServerAbrStreamingUrl { get; set; } = "";
|
|
public List<StreamingFormat> Formats { get; set; } = [];
|
|
public List<StreamingFormat> AdaptiveFormats { get; set; } = [];
|
|
} |