Files
Discord.Net/ref/Entities/Channels/IVoiceChannel.cs
2016-02-26 05:22:01 -04:00

9 lines
216 B
C#

namespace Discord
{
public interface IVoiceChannel : IChannel
{
/// <summary> Gets the requested bitrate, in bits per second, of this voice channel. </summary>
int Bitrate { get; }
}
}