12345678910111213141516171819202122232425262728293031 |
- //
- // WFCCCreateGroupNotificationContent.h
- // WFChatClient
- //
- // Created by heavyrain on 2017/9/19.
- // Copyright © 2017年 WildFireChat. All rights reserved.
- //
- #import "WFCCNotificationMessageContent.h"
- /**
- 建群的通知消息
- */
- @interface WFCCGroupPrivateChatNotificationContent : WFCCNotificationMessageContent
- /**
- 群组ID
- */
- @property (nonatomic, strong)NSString *groupId;
- /**
- 创建者ID
- */
- @property (nonatomic, strong)NSString *creator;
- /**
- 操作
- */
- @property (nonatomic, strong)NSString *type;
- @end
|