Files
Discord.Net/ref/Events/TypingEventArgs.cs
2016-02-26 05:22:01 -04:00

15 lines
291 B
C#

namespace Discord
{
public class TypingEventArgs
{
public ITextChannel Channel { get; }
public User User { get; }
public TypingEventArgs(ITextChannel channel, User user)
{
Channel = channel;
User = user;
}
}
}