WFCCGroupMemberMuteNotificationContent.h 643 B

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // WFCCCreateGroupNotificationContent.h
  3. // WFChatClient
  4. //
  5. // Created by heavyrain on 2017/9/19.
  6. // Copyright © 2017年 WildFireChat. All rights reserved.
  7. //
  8. #import "WFCCNotificationMessageContent.h"
  9. /**
  10. 群成员禁言的通知消息
  11. */
  12. @interface WFCCGroupMemberMuteNotificationContent : WFCCNotificationMessageContent
  13. /**
  14. 群组ID
  15. */
  16. @property (nonatomic, strong)NSString *groupId;
  17. /**
  18. 操作者ID
  19. */
  20. @property (nonatomic, strong)NSString *creator;
  21. /**
  22. 操作
  23. */
  24. @property (nonatomic, strong)NSString *type;
  25. /**
  26. 被禁言/取消禁言者ID列表
  27. */
  28. @property (nonatomic, strong)NSArray<NSString *> *targetIds;
  29. @end