21 lines
445 B
Objective-C
21 lines
445 B
Objective-C
//
|
|
// XPMonentsInteractiveProtocol.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2022/5/18.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@protocol XPMonentsInteractiveProtocol <NSObject>
|
|
|
|
- (void)getMonentsInteractiveListSueccess:(NSArray *)array state:(int)state;
|
|
- (void)getMonentsInteractiveListFail:(NSString *)msg state:(int)state;
|
|
///清空互动消息
|
|
- (void)clearInteractiveMessageSuccess;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|