Files
yinmeng-ios/xplan-ios/Main/Home/Presenter/XPHomeRecommendPresenter.h
2023-03-15 17:51:34 +08:00

30 lines
660 B
Objective-C

//
// XPHomeRecommendPresenter.h
// xplan-ios
//
// Created by 冯硕 on 2022/2/21.
//
#import "BaseMvpPresenter.h"
NS_ASSUME_NONNULL_BEGIN
@interface XPHomeRecommendPresenter : BaseMvpPresenter
/// 获取首页顶部的轮播图
- (void)getHomeTopBannerList;
/// 获取首页推荐列表
- (void)getHomeRecommendRoomList;
/// 获取首页热门房间列表
- (void)getHomeHotRoomList;
/// 热门房间(个人房)列表
- (void)getHomePersonalRoomList;
/// 组队开黑房间列表
/// @param pageNum 当前的页数
- (void)getPlayGameWithTeam:(int)pageNum;
/// 获取全服礼物记录列表
- (void)getHomeGiftRecord;
@end
NS_ASSUME_NONNULL_END