Started adding audio receive
This commit is contained in:
15
src/Discord.Net.WebSocket/API/Voice/SpeakingEvent.cs
Normal file
15
src/Discord.Net.WebSocket/API/Voice/SpeakingEvent.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
#pragma warning disable CS1591
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Discord.API.Voice
|
||||
{
|
||||
internal class SpeakingEvent
|
||||
{
|
||||
[JsonProperty("user_id")]
|
||||
public ulong UserId { get; set; }
|
||||
[JsonProperty("ssrc")]
|
||||
public uint Ssrc { get; set; }
|
||||
[JsonProperty("speaking")]
|
||||
public bool Speaking { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user