lpw
2024-01-12 1cbc13b30f3b999e48b5991820811c023ba0b1e7
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
f4153c 24 /*!
c09cd2 25  @abstract characterId           (cp使用)
5b23db 26  */
L 27 @property(copy,nonatomic)NSString *characterId;
28
c09cd2 29 /*!
L 30  @abstract shortUrl                 (cp使用)
31  */
32 @property(copy,nonatomic)NSString *shortUrl;
33
5b23db 34 /*
c09cd2 35  uid                    (cp使用)
5b23db 36  */
L 37 @property(copy,nonatomic)NSString *uid;
c09cd2 38 /*!
L 39  @abstract 用户中心文字内容 (cp使用)
40  */
41 @property(copy,nonatomic)NSString *userCenterInfo;
f4153c 42
d9782e 43 @end
H 44
45 NS_ASSUME_NONNULL_END