Files
VDownload/VDownload.Sources/VDownload.Sources.Twitch/VDownload.Sources.Twitch.Api/Helix/GetVideos/Response/GetVideosResponse.cs
2024-02-13 02:59:40 +01:00

16 lines
339 B
C#

using Newtonsoft.Json;
using System.Collections.Generic;
namespace VDownload.Sources.Twitch.Api.Helix.GetVideos.Response
{
public class GetVideosResponse
{
[JsonProperty("data")]
public List<Data> Data { get; set; }
[JsonProperty("pagination")]
public Pagination Pagination { get; set; }
}
}