private void RunCommand(string message, object callback)
        {
            if (string.IsNullOrEmpty(message))
            {
                return;
            }

            UCommandController.RunDynamicCommands(message);
        }