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

31 lines
849 B
Objective-C

//
// LMWeekListTableViewCell.h
// SweetParty
//
// Created by Xmac on 2024/8/7.
//
#import <UIKit/UIKit.h>
#import "LMCurrentWeekGiftRankListModel.h"
NS_ASSUME_NONNULL_BEGIN
static NSString *LMWeekListTableViewCellID = @"LMWeekListTableViewCellID";
@interface LMWeekListTableViewCell : UITableViewCell
@property (weak, nonatomic) IBOutlet UIImageView *rankIcon;
@property (weak, nonatomic) IBOutlet UILabel *rankLabel;
@property (weak, nonatomic) IBOutlet UIImageView *receiveHeaderPic;
@property (weak, nonatomic) IBOutlet UILabel *nickNameLabel;
@property (weak, nonatomic) IBOutlet UILabel *receiveCountLabel;
@property (weak, nonatomic) IBOutlet UIImageView *sendHeaderPic;
@property (weak, nonatomic) IBOutlet UILabel *sendCountLabel;
@property (nonatomic, strong) LMCurrentWeekGiftRankListModel *model;
@end
NS_ASSUME_NONNULL_END