namespace SharpChat {
    public interface ClientCommand {
        bool IsMatch(ClientCommandContext ctx);
        void Dispatch(ClientCommandContext ctx);
    }
}