Files
peko-ios/YuMi/Modules/YMMine/Presenter/XPMineCollectRoomListPresenter.h
2023-07-14 18:50:55 +08:00

26 lines
609 B
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// YMMineCollectRoomListPresenter.h
// YUMI
//
// Created by YUMI on 2022/7/27.
//
#import "BaseMvpPresenter.h"
NS_ASSUME_NONNULL_BEGIN
@interface XPMineCollectRoomListPresenter : BaseMvpPresenter
/// 获取收藏房间列表
/// @param page 当前的页数
/// @param pageSize 一页多少个
/// @param type 类型4个播房其他派对房不传所有房间
- (void)getCollectRoomList:(int)page pageSize:(int)pageSize state:(int)state type:(NSString *)type;
///批量删除收藏的房间
- (void)deletecollectRoomWithRoomUids:(NSString *)roomUids;
@end
NS_ASSUME_NONNULL_END