28 lines
579 B
Objective-C
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
|