Discord.Net/experiment/Discord.Net.Rpc/Entities/VoiceProperties.cs

15 lines
550 B
C#
Raw Normal View History

2024-06-12 22:47:39 -07:00
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; }
}
}