Files
yuyin_ios/SweetParty/主类/Mine/装扮&商城/SPMineDressCell.h
2025-08-08 11:05:33 +08:00

26 lines
580 B
Objective-C
Executable File

//
// SPMineDressCell.h
// SweetParty
//
// Created by bj_szd on 2022/6/6.
//
#import <UIKit/UIKit.h>
#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