This repository has been archived on 2024-12-22. You can view files and clone it, but cannot push or open issues or pull requests.
elliebot/src/ayu/Ayu.Discord.Voice/Models/VoiceReady.cs
2023-07-11 16:35:28 +12:00

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; }
}
}