22 lines
441 B
Objective-C
22 lines
441 B
Objective-C
//
|
|
// XPMonentsTopicListProtocol.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2022/8/18.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@protocol XPMonentsTopicListProtocol <NSObject>
|
|
- (void)getMonentsTopicListSuccess:(NSArray *)list state:(int)state;
|
|
|
|
- (void)getMoentsTopicFail:(NSString *)message state:(int)state;
|
|
|
|
///删除话题成功
|
|
- (void)deleteMonentsSuccess:(NSString *)monentsInfo;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|