Updated reference channel entities

This commit is contained in:
RogueException
2016-02-26 05:22:01 -04:00
parent d1cae981da
commit 0759f957d8
23 changed files with 298 additions and 162 deletions

View File

@@ -29,7 +29,7 @@ namespace Discord
public string CurrentGame { get; }
public IEnumerable<Server> Servers { get; }
public IEnumerable<Channel> PrivateChannels { get; }
public IEnumerable<PrivateChannel> PrivateChannels { get; }
public IEnumerable<Region> Regions { get; }
public DiscordClient() { }
@@ -43,8 +43,8 @@ namespace Discord
public void SetStatus(UserStatus status) { }
public void SetGame(string game) { }
public Channel GetChannel(ulong id) => null;
public Task<Channel> CreatePrivateChannel(ulong userId) => null;
public PrivateChannel GetPrivateChannel(ulong id) => null;
public Task<PrivateChannel> CreatePrivateChannel(ulong userId) => null;
public Task<Invite> GetInvite(string inviteIdOrXkcd) => null;