forked from EllieBotDevs/elliebot
22 lines
No EOL
498 B
C#
22 lines
No EOL
498 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace Ayu.Discord.Voice.Models
|
|
{
|
|
public sealed class VoiceReady
|
|
{
|
|
[JsonProperty("ssrc")]
|
|
public uint Ssrc { get; set; }
|
|
|
|
[JsonProperty("ip")]
|
|
public string Ip { get; set; }
|
|
|
|
[JsonProperty("port")]
|
|
public int Port { get; set; }
|
|
|
|
[JsonProperty("modes")]
|
|
public string[] Modes { get; set; }
|
|
|
|
[JsonProperty("heartbeat_interval")]
|
|
public string HeartbeatInterval { get; set; }
|
|
}
|
|
} |