// // FKPriceWarnListViewModel.h // FirstLink // // Created by jack on 16/5/27. // Copyright © 2016年 FirstLink. All rights reserved. // #import #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