26 lines
388 B
Objective-C
26 lines
388 B
Objective-C
//
|
|
// XPInRoomRecordPresenter.h
|
|
// xplan-ios
|
|
//
|
|
// Created by GreenLand on 2022/9/6.
|
|
//
|
|
|
|
#import "BaseMvpPresenter.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface XPInRoomRecordPresenter : BaseMvpPresenter
|
|
|
|
///获取进房记录
|
|
- (void)getInRoomRecordList;
|
|
|
|
/// 清除进房记录
|
|
- (void)cleanInRoomRecord;
|
|
|
|
///大家都在搜
|
|
- (void)getEveryoneSearchList;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|