blob: 82439e8b443d48d4bdb4c0a95b8703b8fb3198d8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
namespace LibMatrix.Utilities.Bot.Interfaces;
public interface ICommand {
public string Name { get; }
public string Description { get; }
public Task<bool> CanInvoke(CommandContext ctx) {
return Task.FromResult(true);
}
public Task Invoke(CommandContext ctx);
}
|