21 lines
394 B
Objective-C
21 lines
394 B
Objective-C
//
|
|
// XPHomeLikePresenter.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2022/3/2.
|
|
//
|
|
|
|
#import "BaseMvpPresenter.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface XPHomeLikePresenter : BaseMvpPresenter
|
|
/// 获取关注房间列表
|
|
- (void)getHomeAttectionList;
|
|
/// 获取收藏房间列表
|
|
/// @param page 当前页数
|
|
- (void)getHomeCollectRoomList:(int)page state:(int)state;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|