WFCCAddGroupeMemberNotificationContent.h 502 B

1234567891011121314151617181920212223242526
  1. //
  2. // WFCCAddGroupeMemberNotificationContent.h
  3. // WFChatClient
  4. //
  5. // Created by heavyrain on 2017/9/20.
  6. // Copyright © 2017年 WildFireChat. All rights reserved.
  7. //
  8. #import "WFCCNotificationMessageContent.h"
  9. /**
  10. 群组加人的通知消息
  11. */
  12. @interface WFCCAddGroupeMemberNotificationContent : WFCCNotificationMessageContent
  13. /**
  14. 邀请者ID
  15. */
  16. @property (nonatomic, strong)NSString *invitor;
  17. /**
  18. 被邀请者ID列表
  19. */
  20. @property (nonatomic, strong)NSArray<NSString *> *invitees;
  21. @end