WFCCKickoffGroupMemberNotificaionContent.h 585 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // WFCCKickoffGroupMemberNotificaionContent.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 WFCCKickoffGroupMemberNotificaionContent : WFCCNotificationMessageContent
  13. /**
  14. 群组ID
  15. */
  16. @property (nonatomic, strong)NSString *groupId;
  17. /**
  18. 操作者ID
  19. */
  20. @property (nonatomic, strong)NSString *operateUser;
  21. /**
  22. 被踢成员的ID列表
  23. */
  24. @property (nonatomic, strong)NSArray<NSString *> *kickedMembers;
  25. @end