Files
VDownload/VDownload.Sources/VDownload.Sources.Twitch/VDownload.Sources.Twitch.Api/GQL/GetVideoToken/Request/GetVideoTokenVideoPlaybackAccessToken.cs

22 lines
519 B
C#
Raw Normal View History

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;
namespace VDownload.Sources.Twitch.Api.GQL.GetVideoToken.Request
{
public class GetVideoTokenVideoPlaybackAccessToken
{
[JsonProperty("value")]
public string Value { get; set; }
[JsonProperty("signature")]
public string Signature { get; set; }
[JsonProperty("__typename")]
public string Typename { get; set; }
}
}