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

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