Files
yuyin_ios/SweetParty/主类/狸猫新增/情侣空间/LMCPSpaceCollectionViewCell.h

30 lines
789 B
C
Raw Normal View History

2025-08-08 11:05:33 +08:00
//
// LMCPSpaceCollectionViewCell.h
// SweetParty
//
// Created by Xmac on 2024/8/13.
//
#import <UIKit/UIKit.h>
#import "LMCPSpaceDressListModel.h"
NS_ASSUME_NONNULL_BEGIN
static NSString *LMCPSpaceCollectionViewCellID = @"LMCPSpaceCollectionViewCellID";
@interface LMCPSpaceCollectionViewCell : UICollectionViewCell
@property (weak, nonatomic) IBOutlet UILabel *levelLabel;
@property (weak, nonatomic) IBOutlet UIImageView *dressIcon;
@property (weak, nonatomic) IBOutlet UIImageView *basePic;
@property (weak, nonatomic) IBOutlet UILabel *dressName;
@property (nonatomic, strong) LMCPSpaceDressListModel *model;
- (void)setHeaderDecInfoWithModel:(LMCPSpaceDressListModel *)model;
- (void)setCPTexiaoInfoWithModel:(LMCPSpaceDressListModel *)model;
@end
NS_ASSUME_NONNULL_END