// // SPMineDressCell.h // SweetParty // // Created by bj_szd on 2022/6/6. // #import #import "SPMineDressModel.h" NS_ASSUME_NONNULL_BEGIN @interface SPMineDressCell : UICollectionViewCell @property (weak, nonatomic) IBOutlet UIImageView *bgImgV; @property (weak, nonatomic) IBOutlet UIImageView *iconImgV; @property (weak, nonatomic) IBOutlet UILabel *nameLab; @property (weak, nonatomic) IBOutlet UILabel *timeLab; @property (weak, nonatomic) IBOutlet UIButton *useBtn; @property (nonatomic, strong) SPMineDressModel *model; @end NS_ASSUME_NONNULL_END