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

11 lines
492 B
C#

namespace TwitchEventSub.Types.Poll
{
public class PollChoice
{
public string id { get; set; }
public string title { get; set; } //Text displayed for the choice.
public int bits_votes { get; set; } //Number of votes received via Bits.
public int channel_points_votes { get; set; } //Number of votes received via Channel Points.
public int votes { get; set; } //Total number of votes received for the choice across all methods of voting.
}
}