You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

TypingEventArgs.cs 291 B

1234567891011121314
  1. namespace Discord
  2. {
  3. public class TypingEventArgs
  4. {
  5. public ITextChannel Channel { get; }
  6. public User User { get; }
  7. public TypingEventArgs(ITextChannel channel, User user)
  8. {
  9. Channel = channel;
  10. User = user;
  11. }
  12. }
  13. }