/* ============================================================================== * 功能描述:服务器执行命令的接口 * 创 建 者:SAGACLOUD * 创建日期:2017/9/17 * ==============================================================================*/ using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ServiceMBI.Modes { /// /// IMBICommand /// public interface IServiceCommand { string Execute(string param); } }