twitch-agent/TwitchEventSub/Types/Poll/VotingMethod.cs

8 lines
175 B
C#
Raw Normal View History

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