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.

VoiceProperties.cs 550 B

1234567891011121314
  1. namespace Discord.Rpc
  2. {
  3. public class VoiceProperties
  4. {
  5. public VoiceDeviceProperties Input { get; set; }
  6. public VoiceDeviceProperties Output { get; set; }
  7. public VoiceModeProperties Mode { get; set; }
  8. public Optional<bool> AutomaticGainControl { get; set; }
  9. public Optional<bool> EchoCancellation { get; set; }
  10. public Optional<bool> NoiseSuppression { get; set; }
  11. public Optional<bool> QualityOfService { get; set; }
  12. public Optional<bool> SilenceWarning { get; set; }
  13. }
  14. }