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 |
|
f4153c
|
36 |
/*! |
L |
37 |
@abstract 充值中心域名 |
|
38 |
*/ |
|
39 |
@property(copy,nonatomic)NSString *rechargeCenterDomain; |
|
40 |
|
|
41 |
/*! |
|
42 |
@abstract 服务器名 |
|
43 |
*/ |
|
44 |
@property(copy,nonatomic)NSString *serverName; |
|
45 |
|
|
46 |
/*! |
|
47 |
@abstract 游戏名称 |
|
48 |
*/ |
|
49 |
@property(copy,nonatomic)NSString *appName; |
|
50 |
|
|
51 |
|
|
52 |
|
d9782e
|
53 |
@end |
H |
54 |
|
|
55 |
NS_ASSUME_NONNULL_END |