namespace TwitchEventSub.Types.ChannelPoints { public class CustomChannelPointsReward { public string id { get; set; } public string title { get; set; } public int cost { get; set; } public string prompt { get; set; } //The reward description. } public class GlobalCooldown { public bool is_enabled { get; set; } public int seconds { get; set; } } public abstract class intSetting { public bool is_enabled { get; set; } public int value { get; set; } } }