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/SelectProtocol.cs
2023-07-11 16:35:28 +12:00

23 lines
No EOL
507 B
C#

using Newtonsoft.Json;
namespace Ayu.Discord.Voice.Models
{
public sealed class SelectProtocol
{
[JsonProperty("protocol")]
public string Protocol { get; set; }
[JsonProperty("data")]
public ProtocolData Data { get; set; }
public sealed class ProtocolData
{
[JsonProperty("address")]
public string Address { get; set; }
[JsonProperty("port")]
public int Port { get; set; }
[JsonProperty("mode")]
public string Mode { get; set; }
}
}
}