28 lines
512 B
C
28 lines
512 B
C
|
|
//
|
||
|
|
// GroupInfo.h
|
||
|
|
// Youth
|
||
|
|
//
|
||
|
|
// Created by mambaxie on 2022/1/22.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <Foundation/Foundation.h>
|
||
|
|
#import <V2TIMManager+Conversation.h>
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface GroupInfo : NSObject
|
||
|
|
|
||
|
|
@property (nonatomic, copy) NSString *group_id;
|
||
|
|
|
||
|
|
@property (nonatomic, copy) NSString *group_name;
|
||
|
|
|
||
|
|
@property (nonatomic, strong) NSArray<User *> *users;
|
||
|
|
|
||
|
|
@property (nonatomic, strong) V2TIMConversation *conversation;
|
||
|
|
|
||
|
|
@property (nonatomic, strong) V2TIMGroupInfo *imGroupInfo;
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|