Files
yinmeng-ios/xplan-ios/Main/Monents/Presenter/XPMonentsTopicLatestPresenter.h
2022-08-26 21:47:28 +08:00

29 lines
765 B
Objective-C

//
// XPMonentsTopicLatestPresenter.h
// xplan-ios
//
// Created by 冯硕 on 2022/8/18.
//
#import "BaseMvpPresenter.h"
NS_ASSUME_NONNULL_BEGIN
@interface XPMonentsTopicLatestPresenter : BaseMvpPresenter
- (void)getMonentsTopicLatestList:(NSString *)dynamicId worldId:(NSString *)worldId state:(int)state;
/// 动态点赞
/// @param dynamicId 动态id
/// @param status yes 点赞 NO 取消
/// @param likedUid 点赞人的uid
/// @param worldId 话题的id
- (void)likeMonent:(NSString *)dynamicId status:(BOOL)status likedUid:(NSString *)likedUid worldId:(NSString *)worldId;
/// 删除动态
/// @param dynamicId 动态id
/// @param worldId 话题id
- (void)deleteMonents:(NSString *)dynamicId worldId:(NSString *)worldId;
@end
NS_ASSUME_NONNULL_END