lipengwei
2020-05-06 d560f4df74bc74b2e5c269173f4c9572bb28cabc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//
//  WAUserCenterResult.h
//  WASdkIntf
//
//  Created by hank on 2019/5/8.
//  Copyright © 2019年 GHW-T-01. All rights reserved.
//
 
#import <Foundation/Foundation.h>
 
NS_ASSUME_NONNULL_BEGIN
 
@interface WAUserCenterResult : NSObject<NSCoding,NSCopying>
 
/*!
 @abstract 状态码
 */
@property NSInteger code;
/*!
 @abstract 结果描述
 */
@property(copy,nonatomic)NSString *msg;
/*!
 @abstract 用户中心文字内容
 */
@property(copy,nonatomic)NSString *userCenterInfo;
/*!
 @abstract 用户名
 */
@property(copy,nonatomic)NSString *userName;
/*!
 @abstract 初始密码
 */
@property(copy,nonatomic)NSString *password;
 
@end
 
NS_ASSUME_NONNULL_END