KWMCategoryModel.h 936 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;
25 26
//切换分类后,如果原来有选中筛选规则的需要清除并重新刷新,以此字段标识
@property (nonatomic) BOOL isNeedReload;
27 28
//是否滑到底
@property (nonatomic) BOOL reachedEnd;
u  
lee committed
29 30

@end