123456789101112131415161718192021 |
- //
- // ChatMsgSearchModel.h
- // smartRhino
- //
- // Created by taidi on 2019/12/11.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import "BaseModel.h"
- #import "ChatMsgSearchModelSub.h"
- NS_ASSUME_NONNULL_BEGIN
- @protocol ChatMsgSearchModel
- @end
- @interface ChatMsgSearchModel : BaseModel
- @property (nonatomic,strong) NSMutableArray <ChatMsgSearchModelSub>*Items;
- @property (nonatomic,assign) NSInteger Total;
- @end
- NS_ASSUME_NONNULL_END
|