22 lines
517 B
Objective-C
22 lines
517 B
Objective-C
//
|
||
// RoomUserInfoView.h
|
||
// DingDangApp
|
||
//
|
||
// Created by apple on 2023/5/28.
|
||
//
|
||
|
||
#import "RoomPopView.h"
|
||
|
||
NS_ASSUME_NONNULL_BEGIN
|
||
|
||
@interface RoomUserInfoView : RoomPopView
|
||
@property (nonatomic,strong) NSString *userID;
|
||
@property (nonatomic,strong) NSString *roomID;
|
||
@property (nonatomic,strong) NSString *roomAuth;
|
||
/**聊天 1:设置 2:举报 3:送礼物 4:主页 5:打招呼**/
|
||
@property (nonatomic, copy) void(^viewActionBlock)(RoomCardUserModel *model, NSInteger index);
|
||
|
||
@end
|
||
|
||
NS_ASSUME_NONNULL_END
|