Files
yinmeng-ios/xplan-ios/Main/Mine/Presenter/XPMinePresent.h
2022-07-25 18:56:36 +08:00

39 lines
638 B
Objective-C

//
// XPMinePresent.h
// xplan-ios
//
// Created by 冯硕 on 2021/9/16.
//
#import "BaseMvpPresenter.h"
NS_ASSUME_NONNULL_BEGIN
@interface XPMinePresent : BaseMvpPresenter
/// 获取用户信息
- (void)getUserInfo;
/// 获取钱包信息
- (void)getUserWalletInfo;
/// 获取家族详细的信息
- (void)getClanDetailInfo;
///获取个人功能列表
- (void)getPersonItemList;
///获取小游戏列表
- (void)getLittleGameList;
///获取个人中心banner
- (void)getMineBannerList;
///快速匹配小游戏房
/// @param mgId 游戏ID
- (void)quickMatchLittleGameWithMgId:(NSString *)mgId;
@end
NS_ASSUME_NONNULL_END