18 lines
444 B
C#
18 lines
444 B
C#
#pragma warning disable CS1591
|
|
using Newtonsoft.Json;
|
|
|
|
namespace Discord.API.Voice
|
|
{
|
|
public class ReadyEvent
|
|
{
|
|
[JsonProperty("ssrc")]
|
|
public uint SSRC { get; set; }
|
|
[JsonProperty("port")]
|
|
public ushort Port { get; set; }
|
|
[JsonProperty("modes")]
|
|
public string[] Modes { get; set; }
|
|
[JsonProperty("heartbeat_interval")]
|
|
public int HeartbeatInterval { get; set; }
|
|
}
|
|
}
|