Files
VDownload/VDownload.Sources/VDownload.Sources.Twitch/VDownload.Sources.Twitch.Api/GQL/GetClipToken/Response/GetClipTokenPlaybackAccessToken.cs

22 lines
513 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;
2024-03-03 03:14:07 +01:00
namespace VDownload.Sources.Twitch.Api.GQL.GetClipToken.Response
2024-02-13 02:59:40 +01:00
{
2024-03-03 03:14:07 +01:00
public class GetClipTokenPlaybackAccessToken
2024-02-13 02:59:40 +01:00
{
[JsonProperty("signature")]
public string Signature { get; set; }
2024-03-03 03:14:07 +01:00
[JsonProperty("value")]
public string Value { get; set; }
2024-02-13 02:59:40 +01:00
[JsonProperty("__typename")]
public string Typename { get; set; }
}
}