OrderDiscountViewController.h 473 B

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