| 123456789101112131415161718192021222324 |
- //
- // PendingDocumentsViewController.h
- // Granite Expo eSign
- //
- // Created by Ray on 11/04/2017.
- // Copyright © 2017 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface PendingDocumentsViewController : UIViewController
- @property (strong,nonatomic) NSMutableArray* table_data;
- @property (strong, nonatomic) IBOutlet UITableView *tableView;
- @property long offset;
- @property int limit;
- @property (strong,nonatomic) NSString* load_more_hint;
- //@property
- @property bool reset_result;
- @property (strong,nonatomic) NSMutableDictionary* filterparams;
- @end
|