// // Copyright © 2019 dahua. All rights reserved. // #import #import "LCUIKit.h" #import "LCDeviceListPresenter.h" NS_ASSUME_NONNULL_BEGIN typedef void(^LCDeviceListCellClickBlock)(LCDeviceInfo * info,NSInteger channelIndex,NSInteger index); @interface LCDeviceListCell : UITableViewCell /// 设备信息模型 @property (copy, nonatomic) LCDeviceInfo *deviceInfo; /// presenter @property (strong, nonatomic) LCDeviceListPresenter *presenter; /// presenter @property (copy, nonatomic) LCDeviceListCellClickBlock resultBlock; @end NS_ASSUME_NONNULL_END