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.

VoiceMode.cs 552 B

123456789101112131415161718
  1. using Newtonsoft.Json;
  2. namespace Discord.API.Rpc
  3. {
  4. internal class VoiceMode
  5. {
  6. [JsonProperty("type")]
  7. public Optional<string> Type { get; set; }
  8. [JsonProperty("auto_threshold")]
  9. public Optional<bool> AutoThreshold { get; set; }
  10. [JsonProperty("threshold")]
  11. public Optional<float> Threshold { get; set; }
  12. [JsonProperty("shortcut")]
  13. public Optional<VoiceShortcut[]> Shortcut { get; set; }
  14. [JsonProperty("delay")]
  15. public Optional<float> Delay { get; set; }
  16. }
  17. }