Implemented ClientDisconnect event for audio client. (#2520)

This commit is contained in:
Frederik P
2022-12-14 07:57:54 +01:00
committed by GitHub
parent 82b772ac03
commit 4cad546d57
4 changed files with 32 additions and 2 deletions

View File

@@ -0,0 +1,14 @@
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Discord.API.Voice;
internal class ClientDisconnectEvent
{
[JsonProperty("user_id")]
public ulong UserId { get; set; }
}