1234567891011121314151617181920 |
- //
- // WFCCQuitGroupNotificationContent.h
- // WFChatClient
- //
- // Created by heavyrain on 2017/9/20.
- // Copyright © 2017年 WildFireChat. All rights reserved.
- //
- #import "WFCCNotificationMessageContent.h"
- /**
- 退群的通知消息
- */
- @interface WFCCQuitGroupNotificationContent : WFCCNotificationMessageContent
- /**
- 退群成员的ID
- */
- @property (nonatomic, strong)NSString *quitMember;
- @end
|