KWMProduct.h 433 Bytes
Newer Older
houweibin committed
1 2 3 4 5 6 7 8 9 10 11 12 13
//
//  KWMProduct.h
//  iCemarose
//
//  Created by HouWeiBin on 2016/12/2.
//  Copyright © 2016年 kollway. All rights reserved.
//

#import "KWMBaseModel.h"
#import "KWMVariants.h"

@interface KWMProduct : KWMBaseModel

lee committed
14
@property (nonatomic) NSNumber *id;
houweibin committed
15 16 17 18 19 20 21 22 23 24 25
//標題
@property (nonatomic) NSString *title;

//品牌
@property (nonatomic) NSString *vendor;

//規格列表
@property(nonatomic) NSArray<KWMVariants> *variants;


@end