1234567891011121314151617181920212223242526 |
- //
- // WFCCChangeGroupNameNotificationContent.h
- // WFChatClient
- //
- // Created by heavyrain on 2017/9/20.
- // Copyright © 2017年 WildFireChat. All rights reserved.
- //
- #import "WFCCNotificationMessageContent.h"
- /**
- 修改群名的通知消息
- */
- @interface WFCCChangeGroupNameNotificationContent : WFCCNotificationMessageContent
- /**
- 操作者ID
- */
- @property (nonatomic, strong)NSString *operateUser;
- /**
- 群名
- */
- @property (nonatomic, strong)NSString *name;
- @end
|