twitch-agent/TwitchEventSub/Types/Prediction/Outcome.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

12 lines
649 B
C#

namespace TwitchEventSub.Types.Prediction
{
public class Outcome
{
public string id { get; set; } //The outcome ID.
public string title { get; set; } //The outcome title.
public string color { get; set; } //The color for the outcome. Valid values are pink and blue.
public int users { get; set; } //The number of users who used Channel Points on this outcome.
public int channel_points { get; set; } //The total number of Channel Points used on this outcome.
public Predictor[] top_predictors { get; set; } //An array of up to 10 users who used the most Channel Points on this outcome.
}
}