AudioCourseCell.h
333 字节
//
// AudioCourseCell.h
// DreamSleep
//
// Created by peter on 2022/5/6.
//
#import <UIKit/UIKit.h>
#import "SubAudioModel.h"
NS_ASSUME_NONNULL_BEGIN
/// 音频课程列表cell
@interface AudioCourseCell : UITableViewCell
- (void)updateUI:(SubAudioModel *)model indexPath:(NSIndexPath *)indexPath;
@end
NS_ASSUME_NONNULL_END