twitch-agent/TwitchEventSub/Types/EventSubSubscription/TwitchResponse.cs

12 lines
294 B
C#
Raw Permalink Normal View History

using System;
namespace TwitchEventSub.Types.EventSubSubscription
{
public class TwitchResponse
{
public Subscription[] data { get; set; }
public int total { get; set; }
public int max_total_cost { get; set; }
public int total_cost { get; set; }
}
}