// // WFCCVideoMessageContent.h // WFChatClient // // Created by heavyrain on 2017/9/2. // Copyright © 2017年 wildfire chat. All rights reserved. // #import "WFCCMediaMessageContent.h" #import /** 图片消息 */ @interface WFCCVideoMessageContent : WFCCMediaMessageContent /** 构造方法 @param image 图片 @return 图片消息 */ + (instancetype)contentPath:(NSString *)localPath thumbnail:(UIImage *)image; /** 缩略图 */ @property (nonatomic, strong)UIImage *thumbnail; @end