PendingDocumentsViewController.h 601 B

123456789101112131415161718192021222324
  1. //
  2. // PendingDocumentsViewController.h
  3. // Granite Expo eSign
  4. //
  5. // Created by Ray on 11/04/2017.
  6. // Copyright © 2017 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface PendingDocumentsViewController : UIViewController
  10. @property (strong,nonatomic) NSMutableArray* table_data;
  11. @property (strong, nonatomic) IBOutlet UITableView *tableView;
  12. @property long offset;
  13. @property int limit;
  14. @property (strong,nonatomic) NSString* load_more_hint;
  15. //@property
  16. @property bool reset_result;
  17. @property (strong,nonatomic) NSMutableDictionary* filterparams;
  18. @end