YMSelectedLoginViewModel.h 515 B

12345678910111213141516171819202122232425
  1. //
  2. // YMSelectedLoginViewModel.h
  3. // MSYOUPAI
  4. //
  5. // Created by YoMi on 2024/2/4.
  6. // Copyright © 2024 MS. All rights reserved.
  7. //
  8. #import "MSYOUPAIViewModel.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. /** 登录分类类型 */
  11. typedef NS_ENUM(NSUInteger, LoginCategoryType) {
  12. /** 验证码登录*/
  13. LoginCategoryTypeVerifyCode = 0,
  14. /** 密码登录*/
  15. LoginCategoryTypePassword,
  16. };
  17. @interface YMSelectedLoginViewModel : MSYOUPAIViewModel
  18. - (void)gotoLoginVC:(LoginCategoryType)type;
  19. @end
  20. NS_ASSUME_NONNULL_END