RankViewCell.h
317 字节
//
// RankViewCell.h
// DreamSleep
//
// Created by peter on 2022/7/2.
//
#import <UIKit/UIKit.h>
#import "RankModel.h"
NS_ASSUME_NONNULL_BEGIN
/// 排名cell
@interface RankViewCell : UITableViewCell
- (void)showRankData:(RankModel *)rankModel indexPath:(NSIndexPath *)indexPath;
@end
NS_ASSUME_NONNULL_END