Browse Source

Make IVoiceChannel implement INestedChannel

pull/1004/head
Chris Johnston 8 years ago
parent
commit
bb51b660d6
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      src/Discord.Net.Core/Entities/Channels/IVoiceChannel.cs

+ 3
- 3
src/Discord.Net.Core/Entities/Channels/IVoiceChannel.cs View File

@@ -1,9 +1,9 @@
using System;
using System;
using System.Threading.Tasks; using System.Threading.Tasks;


namespace Discord namespace Discord
{ {
public interface IVoiceChannel : IGuildChannel, IAudioChannel
public interface IVoiceChannel : IGuildChannel, IAudioChannel, INestedChannel
{ {
/// <summary> Gets the bitrate, in bits per second, clients in this voice channel are requested to use. </summary> /// <summary> Gets the bitrate, in bits per second, clients in this voice channel are requested to use. </summary>
int Bitrate { get; } int Bitrate { get; }
@@ -13,4 +13,4 @@ namespace Discord
/// <summary> Modifies this voice channel. </summary> /// <summary> Modifies this voice channel. </summary>
Task ModifyAsync(Action<VoiceChannelProperties> func, RequestOptions options = null); Task ModifyAsync(Action<VoiceChannelProperties> func, RequestOptions options = null);
} }
}
}

Loading…
Cancel
Save