Files
peko-ios/YuMi/Modules/YMLogin/View/NewLogin/XPLoginAuthCodeVC.h
2023-08-14 14:39:41 +08:00

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