Files
yinmeng-ios-store/yinmeng-ios/DingDangApp/CodeClass/Room/View/PopView/RoomUserInfoView.h
2023-12-07 10:50:21 +08:00

22 lines
517 B
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// 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