| 1234567891011121314151617 |
- //
- // PDFListTableViewCell.h
- // RedAnt ERP Mobile
- //
- // Created by Ray on 11/23/15.
- // Copyright © 2015 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface PDFListTableViewCell : UITableViewCell
- @property (strong, nonatomic) IBOutlet UILabel *labelType;
- @property (strong, nonatomic) IBOutlet UILabel *labelName;
- @property (strong, nonatomic) IBOutlet UILabel *labelTime;
- @property (strong, nonatomic) IBOutlet UILabel *labelNote;
- @end
|