2
0

WFCCThingsDataContent.h 344 B

12345678910111213141516171819
  1. //
  2. // WFCCThingsDataContent.h
  3. // WFChatClient
  4. //
  5. // Created by heavyrain on 2017/8/16.
  6. // Copyright © 2017年 WildFireChat. All rights reserved.
  7. //
  8. #import "WFCCMessageContent.h"
  9. /**
  10. 物联网数据
  11. */
  12. @interface WFCCThingsDataContent : WFCCMessageContent
  13. /**
  14. 二进制数据内容
  15. */
  16. @property (nonatomic, strong)NSData *data;
  17. @end