2025-11-21 16:17:05 +08:00
|
|
|
//
|
|
|
|
|
// QXIntimateListCell.h
|
|
|
|
|
// QXLive
|
|
|
|
|
//
|
|
|
|
|
// Created by 启星 on 2025/11/20.
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
#import "QXRoomBestFriendModel.h"
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
|
|
|
|
|
@interface QXIntimateListCell : UITableViewCell
|
|
|
|
|
@property (nonatomic,strong)QXRoomBestFriendListModel *model;
|
2025-11-28 22:43:06 +08:00
|
|
|
@property (nonatomic,strong)NSString *userId;
|
2025-11-21 16:17:05 +08:00
|
|
|
+(instancetype)cellWithTableView:(UITableView *)tableView;
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|