IServiceCommand.cs 570 B

12345678910111213141516171819202122232425
  1. 
  2. /* ==============================================================================
  3. * 功能描述:服务器执行命令的接口
  4. * 创 建 者:SAGACLOUD
  5. * 创建日期:2017/9/17
  6. * ==============================================================================*/
  7. using System;
  8. using System.Collections.Generic;
  9. using System.Linq;
  10. using System.Text;
  11. using System.Threading.Tasks;
  12. namespace ServiceMBI.Modes
  13. {
  14. /// <summary>
  15. /// IMBICommand
  16. /// </summary>
  17. public interface IServiceCommand
  18. {
  19. string Execute(string param);
  20. }
  21. }