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