WFCCRecallMessageContent.h 456 B

12345678910111213141516171819202122232425
  1. //
  2. // WFCCRecallMessageContent.h
  3. // WFChatClient
  4. //
  5. // Created by heavyrain on 2017/8/16.
  6. // Copyright © 2017年 WildFireChat. All rights reserved.
  7. //
  8. #import "WFCCNotificationMessageContent.h"
  9. /**
  10. 文本消息
  11. */
  12. @interface WFCCRecallMessageContent : WFCCNotificationMessageContent
  13. /**
  14. 被撤回消息的Uid
  15. */
  16. @property (nonatomic, assign)long long messageUid;
  17. /**
  18. 撤回用户Id
  19. */
  20. @property (nonatomic, strong)NSString *operatorId;
  21. @end