WFCUMessageModel.h 708 B

123456789101112131415161718192021
  1. //
  2. // MessageModel.h
  3. // WFChat UIKit
  4. //
  5. // Created by WF Chat on 2017/9/1.
  6. // Copyright © 2017年 WildFireChat. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import <WFChatClient/WFCChatClient.h>
  10. @interface WFCUMessageModel : NSObject
  11. + (instancetype)modelOf:(WFCCMessage *)message showName:(BOOL)showName showTime:(BOOL)showTime;
  12. @property (nonatomic, assign)BOOL showTimeLabel;
  13. @property (nonatomic, assign)BOOL showNameLabel;
  14. @property (nonatomic, strong)WFCCMessage *message;
  15. @property (nonatomic, assign)BOOL mediaDownloading;
  16. @property (nonatomic, assign)int mediaDownloadProgress;
  17. @property (nonatomic, assign)BOOL voicePlaying;
  18. @property (nonatomic, assign)BOOL highlighted;
  19. @end