new_version_init
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
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 GetVideoTokenData
|
||||
{
|
||||
[JsonProperty("videoPlaybackAccessToken")]
|
||||
public GetVideoTokenVideoPlaybackAccessToken VideoPlaybackAccessToken { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user