// // ScanListCell.h // HMLG Scan Order // // Created by Rui Zhang on 3/30/22. // Copyright © 2022 United Software Applications, Inc. All rights reserved. // #import #import "config.h" NS_ASSUME_NONNULL_BEGIN @interface ScanListCell : UITableViewCell @property (weak, nonatomic) IBOutlet UILabel *labelModel; @property (weak, nonatomic) IBOutlet UILabel *labelDescription; @property (weak, nonatomic) IBOutlet UILabel *labelDimension; @property (weak, nonatomic) IBOutlet UILabel *labelCuft; @property (weak, nonatomic) IBOutlet UILabel *labelOrigin; @property (weak, nonatomic) IBOutlet UILabel *labelPort; @property (weak, nonatomic) IBOutlet UILabel *labelPriceCTNR; @property (weak, nonatomic) IBOutlet UILabel *labelPriceNCA; @property (weak, nonatomic) IBOutlet UILabel *labelPrice25p; @property (weak, nonatomic) IBOutlet UILabel *labelAvailable; @property (weak, nonatomic) IBOutlet UILabel *labelPriceNet; @property (weak, nonatomic) IBOutlet UILabel *labelStock; @property (weak, nonatomic) IBOutlet UILabel *labelPrice0; @property (weak, nonatomic) IBOutlet UILabel *labelPrice1; @property (weak, nonatomic) IBOutlet UILabel *labelPrice2; @property (weak, nonatomic) IBOutlet UILabel *labelPrice3; @property (weak, nonatomic) IBOutlet UILabel *labelPriceSpecial; @property (strong, nonatomic) NSMutableDictionary *modelJson; @end NS_ASSUME_NONNULL_END