2024-02-13 02:59:40 +01:00
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
2024-03-03 03:14:07 +01:00
|
|
|
|
namespace VDownload.Sources.Twitch.Api.GQL.GetVideoToken.Response
|
2024-02-13 02:59:40 +01:00
|
|
|
|
{
|
|
|
|
|
|
public class GetVideoTokenVideoPlaybackAccessToken
|
|
|
|
|
|
{
|
|
|
|
|
|
[JsonProperty("value")]
|
|
|
|
|
|
public string Value { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
[JsonProperty("signature")]
|
|
|
|
|
|
public string Signature { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
[JsonProperty("__typename")]
|
|
|
|
|
|
public string Typename { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|