| 1234567891011121314151617181920 |
- //
- // ChangePasswordViewController.h
- // HMLG Scan Order
- //
- // Created by Rui Zhang on 4/8/22.
- // Copyright © 2022 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface ChangePasswordViewController : UIViewController
- @property (weak, nonatomic) IBOutlet UITextField *editopwd;
- @property (weak, nonatomic) IBOutlet UITextField *editnpwd;
- @property (weak, nonatomic) IBOutlet UITextField *editcpwd;
- @end
- NS_ASSUME_NONNULL_END
|