HWFolderListCell.h 414 B

1234567891011121314151617181920212223
  1. //
  2. // HWFolderListCell.h
  3. // 双子星云手机
  4. //
  5. // Created by 余衡武 on 2022/3/23.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import "HWFolderModel.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface HWFolderListCell : UITableViewCell
  11. @property (nonatomic,strong) HWFolderModel *model;
  12. @property (weak, nonatomic) IBOutlet UILabel *nameLabel;
  13. @property (weak, nonatomic) IBOutlet UIButton *selectBtn;
  14. @end
  15. NS_ASSUME_NONNULL_END