14 lines
301 B
C#
14 lines
301 B
C#
#pragma warning disable CS1591
|
|
using Newtonsoft.Json;
|
|
|
|
namespace Discord.API.Voice
|
|
{
|
|
public class SelectProtocolParams
|
|
{
|
|
[JsonProperty("protocol")]
|
|
public string Protocol { get; set; }
|
|
[JsonProperty("data")]
|
|
public UdpProtocolInfo Data { get; set; }
|
|
}
|
|
}
|