Files
yinmeng-ios/xplan-ios/Main/Login/Presenter/LoginPresenter.h
2021-09-13 18:56:16 +08:00

24 lines
400 B
Objective-C

//
// LoginPresenter.h
// xplan-ios
//
// Created by zu on 2021/9/1.
//
#import "BaseMvpPresenter.h"
#import "XPEnum.h"
NS_ASSUME_NONNULL_BEGIN
@interface LoginPresenter : BaseMvpPresenter
- (void)phoneQuickLogin:(NSString *)accessToken token:(NSString*) token;
/// 第三方登录
/// @param type 登录的类型
- (void)thirdLoginWithType:(ThirdLoginType)type;
@end
NS_ASSUME_NONNULL_END