//
|
// SearchDetailListCell.h
|
// BuWanVideo2.0
|
//
|
// Created by Aeline on 2020/9/19.
|
// Copyright © 2020 com.yeshi.buwansheque.ios. All rights reserved.
|
//
|
|
#import <UIKit/UIKit.h>
|
#import "XYRVideoInfoModel.h"
|
|
@protocol SearchDetailListCellDelegate <NSObject>
|
|
- (void)playVideo:(XYRVideoInfoModel *_Nonnull)model;
|
|
@end
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@interface SearchDetailListCell : UITableViewCell
|
|
@property (nonatomic, nullable, strong) XYRVideoInfoModel *model;
|
|
@property (nonatomic, weak) id<SearchDetailListCellDelegate>delegate;
|
|
@end
|
|
NS_ASSUME_NONNULL_END
|