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 user’s user display name. public string email { get; set; } //The user’s email. Only included if you have the user:read:email scope for the user. public string description { get; set; } } }