Discord.Net/experiment/Discord.Net.Rpc/Entities/VoiceModeProperties.cs
2024-06-13 17:47:39 +12:00

11 lines
357 B
C#

namespace Discord.Rpc
{
public class VoiceModeProperties
{
public Optional<string> Type { get; set; }
public Optional<bool> AutoThreshold { get; set; }
public Optional<float> Threshold { get; set; }
public Optional<VoiceShortcut[]> Shortcut { get; set; }
public Optional<float> Delay { get; set; }
}
}