HWBookmarkListCell.h 583 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // HWBookmarkListCell.h
  3. // 双子星云手机
  4. //
  5. // Created by 余衡武 on 2022/3/24.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import "HWBookmarkModel.h"
  9. #import "HWHistoryModel.h"
  10. @protocol HWBookmarkListCellDelegate <NSObject>
  11. - (void)bookmarkListCellDeleteBtnClick:(HWBookmarkModel *)model;
  12. @end
  13. NS_ASSUME_NONNULL_BEGIN
  14. @interface HWBookmarkListCell : UITableViewCell
  15. @property (nonatomic,strong) HWBookmarkModel *model;
  16. @property (nonatomic,strong) HWHistoryModel *historyModel;
  17. @property (nonatomic,weak) id<HWBookmarkListCellDelegate> delegate;
  18. @end
  19. NS_ASSUME_NONNULL_END