Files
yinmeng-ios/xplan-ios/Main/Home/Presenter/XPHomePresenter.h
2022-03-04 19:54:17 +08:00

27 lines
495 B
Objective-C

//
// XPHomePresenter.h
// xplan-ios
//
// Created by 冯硕 on 2021/11/29.
//
#import "BaseMvpPresenter.h"
NS_ASSUME_NONNULL_BEGIN
@interface XPHomePresenter : BaseMvpPresenter
/// 请求首页
/// @param tabId id
/// @param page 当前的页数
/// @param pageSize 一页有多少个
- (void)getRecommendRoomList:(NSString *)tabId page:(int)page pageSize:(int)pageSize state:(BOOL)state;
/// 获取更多的个播房间
- (void)getHomeMoreAnchorRoomList;
@end
NS_ASSUME_NONNULL_END