twitch-agent/TwitchEventSub/Types/Moderation/ChannelBan.cs

19 lines
705 B
C#
Raw Normal View History

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