| 1234567891011121314151617181920212223 |
- //
- // PendingDocumentsTableViewCell.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 PendingDocumentsTableViewCell : UITableViewCell
- @property (strong, nonatomic) IBOutlet UILabel *labelDocID;
- @property (strong, nonatomic) IBOutlet UILabel *labelCustomer;
- @property (strong, nonatomic) IBOutlet UILabel *labelJobDate;
- @property (strong, nonatomic) IBOutlet UILabel *labelAgent;
- @property (strong, nonatomic) IBOutlet UILabel *labelSignDate;
- @property (strong, nonatomic) IBOutlet UILabel *labelCreateby;
- @end
|