ScoreDetailCell.h
310 字节
//
// ScoreDetailCell.h
// DreamSleep
//
// Created by peter on 2022/5/26.
//
#import <UIKit/UIKit.h>
#import "ScoreDetailModel.h"
NS_ASSUME_NONNULL_BEGIN
/// 积分明细cell
@interface ScoreDetailCell : UITableViewCell
@property (nonatomic, strong) ScoreDetailModel *model;
@end
NS_ASSUME_NONNULL_END