Updated reference channel entities
This commit is contained in:
14
ref/Events/TypingEventArgs.cs
Normal file
14
ref/Events/TypingEventArgs.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user