//
// KWMProductDetailView.h
// iCemarose
//
// Created by HouWeiBin on 2017/1/11.
// Copyright © 2017年 kollway. All rights reserved.
//
#import "Buy/Buy.h"
@protocol KWMProductDetailViewDelegate <NSObject>
- (void)kwm_onClickImage:(NSMutableArray *)imageArr currentIndex:(NSInteger)currentIndex;
- (void)kwm_onClickInformation;
- (void)kwm_onClickSizeBtn;
- (void)kwm_goToBrandVC;
@end
@interface KWMProductDetailView : UIView
@property (weak, nonatomic) id<KWMProductDetailViewDelegate>delegate;
-(void)setData:(BUYProduct *)product;
@end