mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 09:48:26 -04:00
23 lines
686 B
C#
23 lines
686 B
C#
#nullable disable
|
|
namespace NadekoBot.Modules.Searches.Common;
|
|
|
|
//
|
|
// public class TwitchResponse
|
|
// {
|
|
// public List<StreamApiData> Data { get; set; }
|
|
//
|
|
// public class StreamApiData
|
|
// {
|
|
// public string Id { get; set; }
|
|
// public string UserId { get; set; }
|
|
// public string UserName { get; set; }
|
|
// public string GameId { get; set; }
|
|
// public string Type { get; set; }
|
|
// public string Title { get; set; }
|
|
// public int ViewerCount { get; set; }
|
|
// public string Language { get; set; }
|
|
// public string ThumbnailUrl { get; set; }
|
|
// public DateTime StartedAt { get; set; }
|
|
// }
|
|
// }
|