//
// KWMWishCell.h
// iCemarose
//
// Created by HouWeiBin on 2017/7/7.
// Copyright © 2017年 kollway. All rights reserved.
//
#import <UIKit/UIKit.h>
#import <Buy/Buy.h>
#import "KWMWish.h"
@class KWMWishCell;
@protocol KWMWishCellDelegate <NSObject>
-(void)kwm_onClickRemove:(KWMWishCell *)wishCell;
-(void)kwm_onClickEdit:(KWMWishCell *)wishCell;
-(void)kwm_onClickAddToShopCart:(KWMWishCell *)wishCell;
@end
@interface KWMWishCell : UITableViewCell
@property (weak, nonatomic) id<KWMWishCellDelegate>delegate;
@property (nonatomic) KWMWish *wish;
@property (nonatomic) BUYProduct *product;
@property (nonatomic) BUYProductVariant *variant;
@end