twitch-agent/TwitchEventSub/Types/Poll/VotingMethod.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

8 lines
175 B
C#

namespace TwitchEventSub.Types.Poll
{
public class VotingMethod
{
public bool is_enabled { get; set; }
public int amount_per_vote { get; set; }
}
}