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

28 lines
652 B
C#

using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace VDownload.Sources.Twitch.Search.Models.GetVideoToken.Request
{
public class GetVideoTokenVariables
{
[JsonProperty("isLive")]
public bool IsLive { get; set; }
[JsonProperty("login")]
public string Login { get; set; }
[JsonProperty("isVod")]
public bool IsVod { get; set; }
[JsonProperty("vodID")]
public string VodID { get; set; }
[JsonProperty("playerType")]
public string PlayerType { get; set; }
}
}