using Blue; namespace GHZLangChao { /// <summary> /// 登录命令 /// </summary> public struct LoginCommand : ICommand { public void OnExcute() { this.GetService<ILoginService>().Login(); } } }