diff --git a/src/Discord.Net.Core/Entities/Channels/IVoiceChannel.cs b/src/Discord.Net.Core/Entities/Channels/IVoiceChannel.cs
index e2a2ad8eb..3f9ff953b 100644
--- a/src/Discord.Net.Core/Entities/Channels/IVoiceChannel.cs
+++ b/src/Discord.Net.Core/Entities/Channels/IVoiceChannel.cs
@@ -1,9 +1,9 @@
-using System;
+using System;
using System.Threading.Tasks;
namespace Discord
{
- public interface IVoiceChannel : IGuildChannel, IAudioChannel
+ public interface IVoiceChannel : IGuildChannel, IAudioChannel, INestedChannel
{
/// Gets the bitrate, in bits per second, clients in this voice channel are requested to use.
int Bitrate { get; }
@@ -13,4 +13,4 @@ namespace Discord
/// Modifies this voice channel.
Task ModifyAsync(Action func, RequestOptions options = null);
}
-}
\ No newline at end of file
+}