1234567891011121314151617181920212223 |
- //
- // HWFolderListCell.h
- // 双子星云手机
- //
- // Created by 余衡武 on 2022/3/23.
- //
- #import <UIKit/UIKit.h>
- #import "HWFolderModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface HWFolderListCell : UITableViewCell
- @property (nonatomic,strong) HWFolderModel *model;
- @property (weak, nonatomic) IBOutlet UILabel *nameLabel;
- @property (weak, nonatomic) IBOutlet UIButton *selectBtn;
- @end
- NS_ASSUME_NONNULL_END
|