예제 #1
0
        public ActionResult SendCommand(int id, string clientId, ClientCommand command)
        {
            try
            {
                SysUpdateHelper.SetCommand(id, clientId, command);

                return(Success());
            }
            catch (Exception ex)
            {
                return(Error(ex.Message));
            }
        }