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; } } }