Files
yinmeng-ios/xplan-ios/Main/Monents/Protocol/XPMonentsInteractiveProtocol.h
2022-08-26 21:38:47 +08:00

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