您最多选择25个标签 标签必须以中文、字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. }