PBHomeChildCell.h 390 B

12345678910111213141516171819202122232425262728
  1. //
  2. // PBHomeChildCell.h
  3. // zbTest
  4. //
  5. // Created by You on 2024/12/15.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import "PBRoomModel.h"
  9. #import "PBVideoModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface PBHomeChildCell : UICollectionViewCell
  12. @property (nonatomic, strong) PBRoomModel *model;
  13. @property (nonatomic, strong) PBVideoModel *videoModel;
  14. + (double)cellHeight;
  15. @end
  16. NS_ASSUME_NONNULL_END