10 lines
263 B
C#
10 lines
263 B
C#
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; }
|
|
}
|
|
} |