// // QXSelectAuctionInfoView.h // QXLive // // Created by 启星 on 2025/6/27. // #import #import "QXRoomRelationModel.h" NS_ASSUME_NONNULL_BEGIN @interface QXSelectAuctionInfoView : UIView /// 是否是真爱拍 @property (nonatomic,assign)BOOL isRealLove; @property (nonatomic,strong)NSString *roomId; @property (nonatomic,strong)NSString *userId; -(void)showInView:(UIView *)view; -(void)hide; @end @interface QXSelectAuctionInfoHeaderView : UICollectionReusableView @property (nonatomic,strong) UILabel *titleLabel; @end @interface QXSelectAuctionInfoCell : UICollectionViewCell @property (nonatomic,strong) QXRoomRelationModel *model; @property (nonatomic,strong) QXRoomRelationModel *timeModel; @property (nonatomic,strong) UIButton *selectedBtn; @end NS_ASSUME_NONNULL_END