19 lines
279 B
Objective-C
19 lines
279 B
Objective-C
//
|
|
// LoginPresenter.h
|
|
// xplan-ios
|
|
//
|
|
// Created by zu on 2021/9/1.
|
|
//
|
|
|
|
#import "BaseMvpPresenter.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface LoginPresenter : BaseMvpPresenter
|
|
|
|
- (void)phoneQuickLogin:(NSString *)accessToken token:(NSString*) token;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|