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