admin
2017-12-19 8b0e10c2bfee1db6408cbd0deee0a29dafb5dc90
commit | author | age
d1f6ab 1 //
H 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