KWMVariants.h 487 Bytes
Newer Older
houweibin committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
//
//  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

lee committed
16
@property (nonatomic) NSNumber * id;
houweibin committed
17 18 19 20 21 22 23 24 25 26
//规格标题
@property (nonatomic) NSString *title;
//库存
@property (nonatomic) NSNumber *inventoryQuantity;

@property (nonatomic) NSNumber *price;

@property (nonatomic) NSNumber *compareAtPrice;

@end