twitch-agent/TwitchEventSub/Types/Offline/UserUpdate.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
439 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace TwitchEventSub.Types.Offline
{
public class UserUpdate : Event
{
public string user_id { get; set; }
public string user_login { get; set; }
public string user_name { get; set; } //The users user display name.
public string email { get; set; } //The users email. Only included if you have the user:read:email scope for the user.
public string description { get; set; }
}
}