twitch-agent/TwitchEventSub/Types/ChannelPoints/ChannelPointsCustomReward.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

20 lines
554 B
C#

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