1234567891011121314151617181920212223242526 |
- //
- // WFCCKickoffGroupMemberNotificaionContent.h
- // WFChatClient
- //
- // Created by heavyrain on 2017/9/20.
- // Copyright © 2017年 WildFireChat. All rights reserved.
- //
- #import "WFCCNotificationMessageContent.h"
- /**
- 群组踢人的通知消息
- */
- @interface WFCCKickoffGroupMemberNotificaionContent : WFCCNotificationMessageContent
- /**
- 操作者ID
- */
- @property (nonatomic, strong)NSString *operateUser;
- /**
- 被踢成员的ID列表
- */
- @property (nonatomic, strong)NSArray<NSString *> *kickedMembers;
- @end
|