123456789101112131415161718192021222324 |
- //
- // FKPriceWarnListViewModel.h
- // FirstLink
- //
- // Created by jack on 16/5/27.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import "FKRemindProductItem.h"
- @interface FKPriceWarnListViewModel : NSObject
- @property (nonatomic, strong) NSArray *dataArray;
- @property (nonatomic, assign) NSInteger totalCount;
- @property (nonatomic, assign) NSInteger targetToDelete;
- - (BOOL)bottomRefreshEnable;
- - (void)appendMoreArray:(NSArray *)array;
- - (FKRemindProductItem *)remindItemAtIndex:(NSUInteger)index;
- - (void)deleteRemindItemAtIndex:(NSInteger)index;
- @end
|