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.

DummyCommandContext.cs 436 B

1234567891011121314151617181920
  1. using Discord.Commands;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace Discord.Net.Commands.Tests
  6. {
  7. class DummyCommandContext : ICommandContext
  8. {
  9. public IDiscordClient Client { get; set; }
  10. public IGuild Guild { get; set; }
  11. public IMessageChannel Channel { get; set; }
  12. public IUser User { get; set; }
  13. public IUserMessage Message { get; set; }
  14. }
  15. }