Files
peko-ios/YuMi/Modules/YMLogin/View/AccountBindingViewController.h
2025-03-21 16:19:07 +08:00

28 lines
579 B
Objective-C

//
// AccountBindingViewController.h
// YuMi
//
// Created by P on 2025/3/14.
//
#import "MvpViewController.h"
@class UserInfoModel;
NS_ASSUME_NONNULL_BEGIN
typedef NS_ENUM(NSUInteger, BindingDisplayType) {
BindingDisplayType_email,
BindingDisplayType_phoneNum,
};
@interface AccountBindingViewController : MvpViewController
- (instancetype)initWithType:(BindingDisplayType)type
currentBindingAccount:(NSString *)account
areaCode:(NSString *)areaCode
userInfo:(UserInfoModel *)userInfo;
@end
NS_ASSUME_NONNULL_END