SafeSleepCell.h
486 字节
//
// SafeSleepCell.h
// DreamSleep
//
// Created by peter on 2022/4/11.
//
#import <UIKit/UIKit.h>
#import "SafeSleepModel.h"
NS_ASSUME_NONNULL_BEGIN
/// 舒眠课程、助眠音乐、好眠声音静态Cell
@interface SafeSleepCell : UITableViewCell
@property (nonatomic, strong) SafeSleepModel *model;
@property (nonatomic, strong) NSIndexPath *indexPath;
- (void)configureCellWithModel:(SafeSleepModel *)model indexPath:(NSIndexPath *)indexPath;
@end
NS_ASSUME_NONNULL_END