| 12345678910111213141516171819202122232425 |
- //
- // YMSelectedLoginViewModel.h
- // MSYOUPAI
- //
- // Created by YoMi on 2024/2/4.
- // Copyright © 2024 MS. All rights reserved.
- //
- #import "MSYOUPAIViewModel.h"
- NS_ASSUME_NONNULL_BEGIN
- /** 登录分类类型 */
- typedef NS_ENUM(NSUInteger, LoginCategoryType) {
- /** 验证码登录*/
- LoginCategoryTypeVerifyCode = 0,
- /** 密码登录*/
- LoginCategoryTypePassword,
- };
- @interface YMSelectedLoginViewModel : MSYOUPAIViewModel
- - (void)gotoLoginVC:(LoginCategoryType)type;
- @end
- NS_ASSUME_NONNULL_END
|