12345678910111213141516171819 |
- //
- // PBHomeChildCell.h
- // zbTest
- //
- // Created by You on 2024/12/15.
- //
- #import <UIKit/UIKit.h>
- #import "PBRoomModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface PBHomeChildCell : UICollectionViewCell
- @property (nonatomic, strong) PBRoomModel *model;
- + (double)cellHeight;
- @end
- NS_ASSUME_NONNULL_END
|