24 lines
722 B
Objective-C
24 lines
722 B
Objective-C
//
|
|
// DDYoungForgetPwdViewController.h
|
|
// DingDangApp
|
|
//
|
|
// Created by apple on 2023/6/2.
|
|
//
|
|
|
|
#import "WLBaseViewController.h"
|
|
#import "JKCountDownButton.h"
|
|
#import "DDPasswordTextView.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface DDYoungForgetPwdViewController : WLBaseViewController
|
|
@property (nonatomic, assign) BOOL openYoungMode;
|
|
@property (nonatomic, strong) UILabel * titleLabel;
|
|
@property (nonatomic, strong) UILabel * subTitleLabel;
|
|
@property (nonatomic, strong) UILabel * phoneLabel;
|
|
@property (nonatomic, strong) DDPasswordTextView * passwordTextView;
|
|
@property (nonatomic, strong) JKCountDownButton * getCodeBtn;
|
|
@property (nonatomic, copy) NSString *verCode;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|