// // OrderDiscountViewController.h // iSales-CONTRAST // // Created by Rui Zhang on 7/5/22. // Copyright © 2022 United Software Applications, Inc. All rights reserved. // #import 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