You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- using Newtonsoft.Json;
-
- namespace Discord.API.Rpc
- {
- public class VoiceMode
- {
- [JsonProperty("type")]
- public string Type { get; set; }
- [JsonProperty("auto_threshold")]
- public bool AutoThreshold { get; set; }
- [JsonProperty("threshold")]
- public float Threshold { get; set; }
- [JsonProperty("shortcut")]
- public VoiceShortcut[] Shortcut { get; set; }
- [JsonProperty("delay")]
- public float Delay { get; set; }
- }
- }
|