| 1234567891011121314151617 |
- //
- // BundleModelCell.h
- // RedAnt ERP Mobile
- //
- // Created by Ray on 10/31/15.
- // Copyright © 2015 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "RTLabel.h"
- @interface BundleModelCell : UITableViewCell
- @property (strong, nonatomic) IBOutlet UILabel *labelModel;
- @property (strong, nonatomic) IBOutlet UILabel *labelPrice;
- @property (strong, nonatomic) IBOutlet UILabel *labelQTY;
- @property (strong, nonatomic) IBOutlet RTLabel *labelDescription;
- @end
|