//
//  FindChatItemsModel.h
//  smartRhino
//
//  Created by niuzhen on 2019/12/7.
//  Copyright © 2019 tederen. All rights reserved.
//

#import <Foundation/Foundation.h>
typedef NS_ENUM(NSInteger,FindMsgTpye){
    FindAllType = 0,
    FindTextType,
    FindPhotoType,
    FindFileType,
    FindVideoType,
    FindSoundType,
};
    
//整数 < int32 >
//消息类型(1文本2图片3文件4视频5语音)
NS_ASSUME_NONNULL_BEGIN

@interface FindChatItemsModel : NSObject
@property (nonatomic,copy) NSString * AvatarUrl;
@property (nonatomic,copy) NSString * Content;
@property (nonatomic,copy) NSString * CreatedDate;
@property (nonatomic,copy) NSString * FileUrl;
@property (nonatomic,copy) NSString * Name;
@property (nonatomic,assign) NSInteger ChatType;
@property (nonatomic,assign) NSInteger ImId;
@property (nonatomic,assign) FindMsgTpye MsgType;
@property (nonatomic,assign) NSInteger ReceiveUserId;


@end

NS_ASSUME_NONNULL_END