24 lines
400 B
Objective-C
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
|