Files
real-e-party-iOS/YuMi/Modules/YMMine/Presenter/XPMineCollectRoomListPresenter.h
edwinQQQ a35a711be6 chore: Initial clean commit
- Removed YuMi/Library/ (138 MB, not tracked)
- Removed YuMi/Resources/ (23 MB, not tracked)
- Removed old version assets (566 files, not tracked)
- Excluded Pods/, xcuserdata/ and other build artifacts
- Clean repository optimized for company server deployment
2025-10-09 16:19:14 +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