| 12345678910111213141516171819 |
- //
- // OrderDiscountViewController.h
- // iSales-CONTRAST
- //
- // Created by Rui Zhang on 7/5/22.
- // Copyright © 2022 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface OrderDiscountViewController : UIViewController
- @property (nonatomic , copy) void (^onSetValue)(double discount);
- @property (weak, nonatomic) IBOutlet UITextField *textfieldDiscount;
- @property int discount;
- @end
- NS_ASSUME_NONNULL_END
|