using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace QM.Exchange.Interface { public interface IService { /// /// 服务开启 /// void Start(); /// /// 服务关闭 /// void Stop(); } }