Wuyx
2017-01-17 5ed44f1f2b699b1f78935651b0a4b9d9467fa9f1
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
//
//  GHWSDKBindingResult.h
//  GHWSdkUI
//
//  Created by wuyx on 15/9/22.
//  Copyright (c) 2015年 GHW-T-01. All rights reserved.
//
 
#import <Foundation/Foundation.h>
/*!
 @discussion WABindingResult 该类为绑定结果
 - - -
 */
@interface WABindingResult : NSObject
/*!
 @abstract 绑定平台userid
 */
@property(copy,nonatomic)NSString *userId;
/*!
 @abstract 绑定平台(Facebook,Apple)
 */
@property(copy,nonatomic)NSString *platform;
/*!
 @abstract 绑定平台accessToken
 */
@property(copy,nonatomic)NSString *accessToken;
@end