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