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

12 lines
357 B
C#
Raw Permalink Normal View History

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