DocListTableViewCell.h 625 B

1234567891011121314151617181920212223
  1. //
  2. // DocListTableViewCell.h
  3. // Granite Expo eSign
  4. //
  5. // Created by Ray on 12/29/16.
  6. // Copyright © 2016 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface DocListTableViewCell : 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 *labelExtInfo;
  16. @end