using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CapMachine.Wpf.Services { /// /// App启动服务接口 /// public interface IAppStartService { void CreateShell(); void Logout(); void Exit(); } }