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

11 lines
492 B
C#
Raw Permalink Normal View History

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