15 lines
291 B
C#
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;
|
|
}
|
|
}
|
|
}
|