WFCCMediaMessageContent.h 455 B

12345678910111213141516171819202122232425
  1. //
  2. // WFCCMediaMessageContent.h
  3. // WFChatClient
  4. //
  5. // Created by heavyrain on 2017/9/6.
  6. // Copyright © 2017年 WildFireChat. All rights reserved.
  7. //
  8. #import "WFCCMessageContent.h"
  9. /**
  10. 媒体消息
  11. */
  12. @interface WFCCMediaMessageContent : WFCCMessageContent
  13. /**
  14. 媒体内容的本地存储路径
  15. */
  16. @property (nonatomic, strong)NSString *localPath;
  17. /**
  18. 媒体内容的服务器路径
  19. */
  20. @property (nonatomic, strong)NSString *remoteUrl;
  21. @end