25 lines
722 B
C
25 lines
722 B
C
|
|
//
|
||
|
|
// LMWeekLastCollectionViewCell.h
|
||
|
|
// SweetParty
|
||
|
|
//
|
||
|
|
// Created by Xmac on 2024/8/7.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
#import "LMLastWeekRankListModel.h"
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
static NSString *LMWeekLastCollectionViewCellID = @"LMWeekLastCollectionViewCellID";
|
||
|
|
@interface LMWeekLastCollectionViewCell : UICollectionViewCell
|
||
|
|
@property (weak, nonatomic) IBOutlet UIImageView *giftBaseImage;
|
||
|
|
@property (weak, nonatomic) IBOutlet UILabel *giftName;
|
||
|
|
@property (weak, nonatomic) IBOutlet UIImageView *userHeader;
|
||
|
|
@property (weak, nonatomic) IBOutlet UILabel *userNameLabel;
|
||
|
|
@property (weak, nonatomic) IBOutlet UILabel *receiveCount;
|
||
|
|
|
||
|
|
@property (nonatomic, strong) LMLastWeekRankListModel *model;
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|