//
//  KWMVariants.h
//  iCemarose
//
//  Created by HouWeiBin on 2016/11/18.
//  Copyright © 2016年 kollway. All rights reserved.
//

#import "KWMBaseModel.h"

@protocol KWMVariants <NSObject>
@end

@interface KWMVariants : KWMBaseModel

@property (nonatomic) NSNumber * id;
//规格标题
@property (nonatomic) NSString *title;
//库存
@property (nonatomic) NSNumber *inventoryQuantity;

@property (nonatomic) NSNumber *price;

@property (nonatomic) NSNumber *compareAtPrice;

@end