Updated Kick support so admins can now add/remove streamers and force a reconnect to commit the changes

This commit is contained in:
barelyprofessional
2024-09-21 00:28:16 +08:00
parent 1a0197a4c3
commit 12980a86c3
4 changed files with 167 additions and 21 deletions

View File

@@ -0,0 +1,8 @@
namespace KfChatDotNetBot.Models;
public class KickChannelModel
{
public required int ChannelId { get; set; }
public required int ForumId { get; set; }
public required string ChannelSlug { get; set; }
}