
- 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
25 lines
502 B
Objective-C
25 lines
502 B
Objective-C
//
|
|
// YMMonentsInteractivePresenter.h
|
|
// YUMI
|
|
//
|
|
// Created by YUMI on 2022/5/18.
|
|
//
|
|
|
|
#import "BaseMvpPresenter.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface XPMonentsInteractivePresenter : BaseMvpPresenter
|
|
|
|
/// 获取互动消息
|
|
/// @param dynamicId 动态的id
|
|
/// @param pageSize 一页的个数
|
|
/// @param state 状态
|
|
- (void)getMonentsInteractiveList:(NSString *)dynamicId pageSize:(int)pageSize state:(int)state;
|
|
|
|
///清空互动消息
|
|
- (void)clearInteractiveMessage;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|