mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 17:58:26 -04:00
Namespace changes to make them make sense
This commit is contained in:
22
src/NadekoBot.Voice/Models/VoiceReady.cs
Normal file
22
src/NadekoBot.Voice/Models/VoiceReady.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace NadekoBot.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; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user