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