WFCCFileMessageContent.h 551 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // WFCCSoundMessageContent.h
  3. // WFChatClient
  4. //
  5. // Created by heavyrain on 2017/9/9.
  6. // Copyright © 2017年 WildFireChat. All rights reserved.
  7. //
  8. #import "WFCCMediaMessageContent.h"
  9. /**
  10. 语音消息
  11. */
  12. @interface WFCCFileMessageContent : WFCCMediaMessageContent
  13. /**
  14. 构造方法
  15. @param filePath 文件路径
  16. @return 语音消息
  17. */
  18. + (instancetype)fileMessageContentFromPath:(NSString *)filePath;
  19. /**
  20. 文件名
  21. */
  22. @property (nonatomic, strong)NSString *name;
  23. /**
  24. 文件名
  25. */
  26. @property (nonatomic, assign)NSUInteger size;
  27. @end