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.
|
- namespace Discord.Rpc
- {
- public class VoiceProperties
- {
- public VoiceDeviceProperties Input { get; set; }
- public VoiceDeviceProperties Output { get; set; }
- public VoiceModeProperties Mode { get; set; }
- public Optional<bool> AutomaticGainControl { get; set; }
- public Optional<bool> EchoCancellation { get; set; }
- public Optional<bool> NoiseSuppression { get; set; }
- public Optional<bool> QualityOfService { get; set; }
- public Optional<bool> SilenceWarning { get; set; }
- }
- }
|