Files
yuyin_ios/SweetParty/主类/狸猫新增/周星榜/LMWeekCurrentCollectionViewCell.h
2025-08-08 11:05:33 +08:00

23 lines
619 B
Objective-C

//
// LMWeekCurrentCollectionViewCell.h
// SweetParty
//
// Created by Xmac on 2024/8/7.
//
#import <UIKit/UIKit.h>
#import "LMWeekStarGitfListModel.h"
NS_ASSUME_NONNULL_BEGIN
static NSString *LMWeekCurrentCollectionViewCellID = @"LMWeekCurrentCollectionViewCellID";
@interface LMWeekCurrentCollectionViewCell : UICollectionViewCell
@property (weak, nonatomic) IBOutlet UIImageView *giftBgImage;
@property (weak, nonatomic) IBOutlet UIImageView *giftBaseImage;
@property (weak, nonatomic) IBOutlet UILabel *giftNameLabel;
@property (nonatomic, strong) LMWeekStarGitfListModel *model;
@end
NS_ASSUME_NONNULL_END