using Newtonsoft.Json; namespace Discord.API.Rpc { internal class VoiceMode { [JsonProperty("type")] public Optional Type { get; set; } [JsonProperty("auto_threshold")] public Optional AutoThreshold { get; set; } [JsonProperty("threshold")] public Optional Threshold { get; set; } [JsonProperty("shortcut")] public Optional Shortcut { get; set; } [JsonProperty("delay")] public Optional Delay { get; set; } } }