hermes-client/Twitch/Redemptions/Redemption.cs

11 lines
300 B
C#
Raw Normal View History

namespace TwitchChatTTS.Twitch.Redemptions
{
public class Redemption
{
public string Id { get; set; }
public string RedemptionId { get; set; }
public string ActionName { get; set; }
public int Order { get; set; }
public bool State { get; set; }
}
}