27 lines
660 B
Objective-C
27 lines
660 B
Objective-C
//
|
|
// YMMonentsTopicLatestProtocol.h
|
|
// YUMI
|
|
//
|
|
// Created by YUMI on 2022/8/18.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@class MomentsListInfoModel;
|
|
@protocol XPMonentsTopicLatestProtocol <NSObject>
|
|
- (void)getMonentsTopicLatestListSuccess:(MomentsListInfoModel *)info state:(int)state;
|
|
|
|
- (void)getMonentsTopicLatestListFail:(NSString *)msg state:(int)state;
|
|
|
|
///点赞/取消动态成功
|
|
- (void)likeMonentsSuccess:(NSString *)dynamicId status:(BOOL)status;
|
|
|
|
///删除话题成功
|
|
- (void)deleteMonentsSuccess:(NSString *)monentsInfo;
|
|
///屏蔽
|
|
- (void)requesstShieldingSuccess:(NSString *)monentsInfo;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|