twitch-agent/TwitchEventSub/Types/EventSubSubscription/Twitchogram.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

16 lines
430 B
C#

using System.Linq;
using System.Text.Json.Serialization;
namespace TwitchEventSub.Types.EventSubSubscription
{
///<summary>
/// don't deserialize me, go to SubscribableTypesTranslation and have it "refine" one for you
///</summary>
public class Twitchogram
{
public string challenge { get; set; }
public Subscription subscription { get; set; }
public Event Event { get; set; }
}
}