19 lines
364 B
C
19 lines
364 B
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;
|
||
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|