twitch-agent/TwitchEventSub/Types/Offline/UserUpdate.cs

11 lines
439 B
C#
Raw Normal View History

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