lpw
2024-06-26 45ad02909f31e1a2ec3889bfc2ff6961317c721c
commit | author | age
56b891 1 //
L 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;
551baa 23
56b891 24 /*!
551baa 25  @abstract characterId           (cp使用)
L 26  */
27 @property(copy,nonatomic)NSString *characterId;
28
29 /*!
30  @abstract shortUrl                 (cp使用)
31  */
32 @property(copy,nonatomic)NSString *shortUrl;
33
34 /*
35  uid                    (cp使用)
36  */
37 @property(copy,nonatomic)NSString *uid;
38 /*!
39  @abstract 用户中心文字内容 (cp使用)
56b891 40  */
L 41 @property(copy,nonatomic)NSString *userCenterInfo;
319c91 42
56b891 43 @end
L 44
45 NS_ASSUME_NONNULL_END