No Description

FKPriceWarnListViewModel.h 607B

123456789101112131415161718192021222324
  1. //
  2. // FKPriceWarnListViewModel.h
  3. // FirstLink
  4. //
  5. // Created by jack on 16/5/27.
  6. // Copyright © 2016年 FirstLink. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "FKRemindProductItem.h"
  10. @interface FKPriceWarnListViewModel : NSObject
  11. @property (nonatomic, strong) NSArray *dataArray;
  12. @property (nonatomic, assign) NSInteger totalCount;
  13. @property (nonatomic, assign) NSInteger targetToDelete;
  14. - (BOOL)bottomRefreshEnable;
  15. - (void)appendMoreArray:(NSArray *)array;
  16. - (FKRemindProductItem *)remindItemAtIndex:(NSUInteger)index;
  17. - (void)deleteRemindItemAtIndex:(NSInteger)index;
  18. @end