twitch-agent/TwitchEventSub/Types/HypeTrain/Contribution.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
522 B
C#

namespace TwitchEventSub.Types.HypeTrain
{
public class Contribution
{
public string user_id { get; set; } //The ID of the user.
public string user_login { get; set; } //The login of the user.
public string user_name { get; set; } //The display name of the user.
public ContributionType type { get; set; } //Type of contribution. Valid values include bits, subscription.
public int total { get; set; }
}
public enum ContributionType { unknown, bits, subscription }
}