KWMCategoryModel.h 733 Bytes
Newer Older
u  
lee committed
1 2 3 4 5 6 7 8 9 10
//
//  KWMCategoryModel.h
//  iCemarose
//
//  Created by Sanchew on 2017/7/13.
//  Copyright © 2017年 kollway. All rights reserved.
//

#import <Foundation/Foundation.h>
#import <Mobile-Buy-SDK/Buy/BUYClient+Storefront.h>
u  
lee committed
11
#import "KWMFilter.h"
u  
lee committed
12 13 14 15 16 17

@interface KWMCategoryModel : NSObject

@property (nonatomic) NSString* title;
@property (nonatomic) NSNumber* collection_id;
@property (nonatomic) NSString* image;
houweibin committed
18
@property (nonatomic) NSString* focusImage;
u  
lee committed
19 20 21
@property (nonatomic) NSInteger page;
@property (nonatomic) NSMutableArray *products;
@property (nonatomic) BUYCollectionSort sort;
lee committed
22 23
@property (nonatomic) NSMutableArray<KWMFilter *> *filters;
@property (nonatomic) NSString *brand;
lee committed
24
@property (nonatomic) CGFloat offsetY;
u  
lee committed
25 26

@end