123456789101112131415161718192021 |
- //
- // GroupInfoViewController.h
- // WildFireChat
- //
- // Created by heavyrain lee on 2019/3/3.
- // Copyright © 2019 WildFireChat. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import <WFChatClient/WFCChatClient.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface WFCUGroupInfoViewController : UIViewController
- @property(nonatomic, strong)NSString *groupId;
- @property (nonatomic, assign)WFCCGroupMemberSourceType sourceType;
- @property (nonatomic, strong)NSString *sourceTargetId;
- @end
- NS_ASSUME_NONNULL_END
|