Files
Discord.Net/ref/Events/TypingEventArgs.cs
2016-03-12 20:20:30 -04:00

15 lines
293 B
C#

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