22 lines
331 B
Objective-C
22 lines
331 B
Objective-C
//
|
|
// MainPresenter.h
|
|
// xplan-ios
|
|
//
|
|
// Created by zu on 2021/9/8.
|
|
//
|
|
|
|
#import "BaseMvpPresenter.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface MainPresenter : BaseMvpPresenter
|
|
|
|
- (void)autoLogin;
|
|
- (void)loginNIM;
|
|
- (void)getUserInfo;
|
|
/// 检查是否有未消费的内购订单
|
|
- (void)checkTranscation;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|