2024-08-04 19:46:10 -04:00
|
|
|
namespace TwitchChatTTS.Twitch.Socket.Messages
|
|
|
|
{
|
|
|
|
public class EventResponse<T>
|
|
|
|
{
|
|
|
|
public T[]? Data { get; set; }
|
|
|
|
public int Total { get; set; }
|
|
|
|
public int TotalCost { get; set; }
|
|
|
|
public int MaxTotalCost { get; set; }
|
2024-08-06 15:29:29 -04:00
|
|
|
public EventResponsePagination? Pagination { get; set; }
|
|
|
|
}
|
|
|
|
|
|
|
|
public class EventResponsePagination {
|
2024-08-19 00:45:29 -04:00
|
|
|
public string? Cursor { get; set; }
|
2024-08-04 19:46:10 -04:00
|
|
|
}
|
|
|
|
}
|