PendingDocumentsTableViewCell.h 646 B

1234567891011121314151617181920212223
  1. //
  2. // PendingDocumentsTableViewCell.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 PendingDocumentsTableViewCell : UITableViewCell
  10. @property (strong, nonatomic) IBOutlet UILabel *labelDocID;
  11. @property (strong, nonatomic) IBOutlet UILabel *labelCustomer;
  12. @property (strong, nonatomic) IBOutlet UILabel *labelJobDate;
  13. @property (strong, nonatomic) IBOutlet UILabel *labelAgent;
  14. @property (strong, nonatomic) IBOutlet UILabel *labelSignDate;
  15. @property (strong, nonatomic) IBOutlet UILabel *labelCreateby;
  16. @end