LoginCommand.cs 269 B

123456789101112131415
  1. using Blue;
  2. namespace GHZLangChao
  3. {
  4. /// <summary>
  5. /// 登录命令
  6. /// </summary>
  7. public struct LoginCommand : ICommand
  8. {
  9. public void OnExcute()
  10. {
  11. this.GetService<ILoginService>().Login();
  12. }
  13. }
  14. }