commit | author | age
|
dcdc07
|
1 |
// |
W |
2 |
// GHWSDKBindingResult.h |
|
3 |
// GHWSdkUI |
|
4 |
// |
|
5 |
// Created by wuyx on 15/9/22. |
|
6 |
// Copyright (c) 2015年 GHW-T-01. All rights reserved. |
|
7 |
// |
|
8 |
|
|
9 |
#import <Foundation/Foundation.h> |
|
10 |
/*! |
|
11 |
@discussion WABindingResult 该类为绑定结果 |
|
12 |
- - - |
|
13 |
*/ |
|
14 |
@interface WABindingResult : NSObject |
|
15 |
/*! |
|
16 |
@abstract 绑定平台userid |
|
17 |
*/ |
|
18 |
@property(copy,nonatomic)NSString *userId; |
|
19 |
/*! |
|
20 |
@abstract 绑定平台(Facebook,Apple) |
|
21 |
*/ |
|
22 |
@property(copy,nonatomic)NSString *platform; |
|
23 |
/*! |
|
24 |
@abstract 绑定平台accessToken |
|
25 |
*/ |
|
26 |
@property(copy,nonatomic)NSString *accessToken; |
|
27 |
@end |