// // audioPlayListViewCell.h // 双子星云手机 // // Created by xd h on 2024/7/15. // #import #import "lastFileModel.h" NS_ASSUME_NONNULL_BEGIN @interface audioPlayListViewCell : UITableViewCell @property(nonatomic,strong)UIView *cellBgView; //@property(nonatomic,strong)UILabel *timeLabel; @property(nonatomic,strong)UIImageView *mImageView; @property(nonatomic,strong)UILabel *titleLabel; @property(nonatomic,strong)UILabel *contentLabel; @property(nonatomic, strong) UIButton *checkButton; @property (nonatomic,copy) void (^didClickSwitch)(BOOL SwitchOn); @property(nonatomic,strong) lastFileModel*curLastFileModel; @property (nonatomic,assign) BOOL isPlayingType; @end NS_ASSUME_NONNULL_END