twitch-agent/TwitchEventSub/Types/EventSubSubscription/TwitchResponse.cs
Adam R. Grey 3f717df1d4 psuedoinitial
actually I had a previous repo but my dumb ass let the real appsettings sneak in
2021-10-24 01:13:07 -04:00

12 lines
294 B
C#

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