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.

VoiceModeProperties.cs 357 B

1234567891011
  1. namespace Discord.Rpc
  2. {
  3. public class VoiceModeProperties
  4. {
  5. public Optional<string> Type { get; set; }
  6. public Optional<bool> AutoThreshold { get; set; }
  7. public Optional<float> Threshold { get; set; }
  8. public Optional<VoiceShortcut[]> Shortcut { get; set; }
  9. public Optional<float> Delay { get; set; }
  10. }
  11. }