about summary refs log tree commit diff
path: root/Utilities/LibMatrix.Utilities.Bot/Interfaces/ICommand.cs
blob: 70656835599df522949723ac62080ebe5ddfe24e (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);
}