DSCGDStoreInfoTableViewCell.h 568 Bytes
//
//  DSCGDStoreInfoTableViewCell.h
//  DSCnliveShopSDK
//
//  Created by zhaolin on 2018/12/12.
//

#import <DSBaseModule/DSBaseModule.h>
#import "DSCGoodsDetailsModel.h"

NS_ASSUME_NONNULL_BEGIN

@interface DSCGDStoreInfoTableViewCell : DSTableViewCell

@property (nonatomic,assign,readonly) NSInteger row;
@property (nonatomic,strong,readonly) DSCGoodsDetailsModel * detailsModel;

/**
 赋值

 @param detailsModel 数据
 @param row 行数
 */
-(void)setDetailsModel:(DSCGoodsDetailsModel * _Nonnull)detailsModel row:(NSInteger)row;

@end

NS_ASSUME_NONNULL_END