Files
yinmeng-ios/xplan-ios/Main/Message/Protocol/MessageProtocol.h
2021-12-08 18:53:33 +08:00

21 lines
281 B
Objective-C

//
// MessageProtocol.h
// xplan-ios
//
// Created by zu on 2021/12/8.
//
#import <Foundation/Foundation.h>
@class ChatLimitModel;
NS_ASSUME_NONNULL_BEGIN
@protocol MessageProtocol <NSObject>
- (void)onGetLimitChat:(ChatLimitModel *)chatLimit;
@end
NS_ASSUME_NONNULL_END