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

@@ -4,8 +4,8 @@ namespace Discord
{
public class ChannelUpdatedEventArgs : EventArgs
{
public Channel Before => null;
public Channel After => null;
public IChannel Before => null;
public IChannel After => null;
public Server Server => null;
}
}

View File

@@ -1,8 +0,0 @@
namespace Discord
{
public class ChannelUserEventArgs
{
public Channel Channel => null;
public User User => null;
}
}

View File

@@ -0,0 +1,14 @@
namespace Discord
{
public class TypingEventArgs
{
public ITextChannel Channel { get; }
public User User { get; }
public TypingEventArgs(ITextChannel channel, User user)
{
Channel = channel;
User = user;
}
}
}