namespace SharpChat {
    public interface ChatCommand {
        bool IsMatch(ChatCommandContext ctx);
        void Dispatch(ChatCommandContext ctx);
    }
}