Files
VDownload/VDownload.Sources/VDownload.Sources.Twitch/VDownload.Sources.Twitch.Api/Helix/GetClips/Response/GetClipsResponse.cs

20 lines
482 B
C#
Raw Normal View History

2024-03-03 03:14:07 +01:00
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using VDownload.Sources.Twitch.Api.Helix.GetVideos.Response;
namespace VDownload.Sources.Twitch.Api.Helix.GetClips.Response
{
public class GetClipsResponse
{
[JsonProperty("data")]
public List<Data> Data { get; set; }
[JsonProperty("pagination")]
public Pagination Pagination { get; set; }
}
}