23 lines
356 B
Objective-C
23 lines
356 B
Objective-C
//
|
|
// XPLoginAuthCodeVC.h
|
|
// YuMi
|
|
//
|
|
// Created by duoban on 2023/8/11.
|
|
//
|
|
|
|
#import "MvpViewController.h"
|
|
|
|
@protocol XPLoginAuthCodeVCDelegate <NSObject>
|
|
|
|
-(void)bindCodeSuccess;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface XPLoginAuthCodeVC : MvpViewController
|
|
@property(nonatomic,weak) id<XPLoginAuthCodeVCDelegate>delegate;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|