twitch-agent/TwitchEventSub/Types/Offline/UserAuthorizationUpdate.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
736 B
C#

namespace TwitchEventSub.Types.Offline
{
public class UserAuthorizationUpdate : Event
{
public string client_id { get; set; } //The client_id of the application that was granted user access.
public string user_id { get; set; } //The user id for the user who has granted authorization for your client id.
public string user_login { get; set; } //The user login for the user who has granted authorization for your client id.
public string user_name { get; set; } //The user display name for the user who has granted authorization for your client id.
}
public class UserAuthorizationGrant : UserAuthorizationUpdate { }
public class UserAuthorizationRevoke : UserAuthorizationUpdate { }
}