25 lines
600 B
Objective-C
25 lines
600 B
Objective-C
//
|
|
// SetNickNameViewController.h
|
|
// Youth
|
|
//
|
|
// Created by mambaxie on 2022/1/1.
|
|
//
|
|
|
|
#import "LoginBaseViewController.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface SetNickNameViewController : LoginBaseViewController
|
|
|
|
//@property (nonatomic, assign) GenderType gender;
|
|
@property (nonatomic, strong) NSString *gender_str;
|
|
@property (nonatomic, strong) NSString *birthday;
|
|
@property (nonatomic, strong) NSArray *wantGendersArray;
|
|
@property (nonatomic, strong) NSString *province;
|
|
@property (nonatomic, strong) NSString *city;
|
|
@property (nonatomic, strong) NSString *district;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|