IPrivateChannel should extend IChannel

This commit is contained in:
RogueException
2016-07-26 17:46:12 -03:00
parent e8b95519da
commit c8a84a05b8

View File

@@ -2,7 +2,7 @@
namespace Discord
{
public interface IPrivateChannel
public interface IPrivateChannel : IChannel
{
IReadOnlyCollection<IUser> Recipients { get; }
}