ASHomeBestSellCell.h 490 B

123456789101112131415161718192021222324
  1. //
  2. // ASHomeBestSellCell.h
  3. // Asteria
  4. //
  5. // Created by iOS on 2023/6/6.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import "ASHomeMainListModel.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface ASHomeBestSellCell : UITableViewCell
  11. @property (nonatomic, strong) UILabel *titleLb;
  12. @property (nonatomic, strong) UICollectionView *collectV;
  13. @property (nonatomic, strong) ASHomeMainListModel *model;
  14. @property (nonatomic, copy) void(^productClick)(NSInteger i, ASProductBaseModel *m);
  15. @end
  16. NS_ASSUME_NONNULL_END