twitch-agent/TwitchEventSub/Types/Moderation/ChannelBan.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

19 lines
705 B
C#

namespace TwitchEventSub.Types.Moderation
{
public class ChannelBan : Event
{
public string user_id { get; set; }
public string user_login { get; set; }
public string user_name { get; set; }
public string broadcaster_user_id { get; set; }
public string broadcaster_user_login { get; set; }
public string broadcaster_user_name { get; set; }
public string moderator_user_id { get; set; }
public string moderator_user_login { get; set; }
public string moderator_user_name { get; set; }
public string reason { get; set; }
public string ends_at { get; set; }
public bool is_permanent { get; set; }
}
}