Files
yuyin_ios/SweetParty/主类/狸猫新增/周星榜/LMWeekLastCollectionViewCell.h

25 lines
722 B
C
Raw Permalink Normal View History

2025-08-08 11:05:33 +08:00
//
// 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