| 123456789101112131415161718 |
- //
- // PriceGroupListViewController.h
- // HMLG Scan Order
- //
- // Created by Rui Zhang on 8/25/22.
- // Copyright © 2022 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface PriceGroupListViewController : UIViewController
- @property (strong, nonatomic) NSArray* pricelist;
- @property (nonatomic , copy) void (^returnValue)(int index);
- @end
- NS_ASSUME_NONNULL_END
|