Files
VDownload/VDownload.Sources/VDownload.Sources.Twitch/VDownload.Sources.Twitch.Api/GQL/GetVideoToken/Response/GetVideoTokenResponse.cs
2024-02-13 02:59:40 +01:00

20 lines
511 B
C#

using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using VDownload.Sources.Twitch.Api.GQL.GetVideoToken.Request;
namespace VDownload.Sources.Twitch.Api.GQL.GetVideoToken.Response
{
public class GetVideoTokenResponse
{
[JsonProperty("data")]
public GetVideoTokenData Data { get; set; }
[JsonProperty("extensions")]
public GetVideoTokenExtensions Extensions { get; set; }
}
}