Improved internal websocket interfaces

This commit is contained in:
RogueException
2016-06-07 21:37:47 -03:00
parent a944b1576a
commit 2fd7f59153
2 changed files with 2 additions and 1 deletions

View File

@@ -1,6 +1,6 @@
namespace Discord
{
interface ICachedEntity<T> : IEntity<T>
internal interface ICachedEntity<T> : IEntity<T>
{
DiscordSocketClient Discord { get; }
}

View File

@@ -2,5 +2,6 @@
{
internal interface ICachedGuildChannel : ICachedChannel, IGuildChannel
{
new CachedGuild Guild { get; }
}
}