BundleModelCell.h 503 B

1234567891011121314151617
  1. //
  2. // BundleModelCell.h
  3. // RedAnt ERP Mobile
  4. //
  5. // Created by Ray on 10/31/15.
  6. // Copyright © 2015 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "RTLabel.h"
  10. @interface BundleModelCell : UITableViewCell
  11. @property (strong, nonatomic) IBOutlet UILabel *labelModel;
  12. @property (strong, nonatomic) IBOutlet UILabel *labelPrice;
  13. @property (strong, nonatomic) IBOutlet UILabel *labelQTY;
  14. @property (strong, nonatomic) IBOutlet RTLabel *labelDescription;
  15. @end