23 lines
619 B
Objective-C
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
|