TLSUserInfo.h 516 B

12345678910111213141516171819202122232425262728
  1. //
  2. // TLSUserInfo.h
  3. // WTLoginSDK64ForIOS
  4. //
  5. // Created by givonchen on 15-5-20.
  6. //
  7. //
  8. #ifndef TLSSDK_TLSUserInfo_h
  9. #define TLSSDK_TLSUserInfo_h
  10. #import <Foundation/Foundation.h>
  11. #include <AvailabilityMacros.h>
  12. /// 用户信息
  13. @interface TLSUserInfo : NSObject
  14. {
  15. /// 帐号类型
  16. uint32_t accountType DEPRECATED_ATTRIBUTE;
  17. /// 用户id
  18. NSString* identifier;
  19. }
  20. /// 帐号类型
  21. @property (assign) uint32_t accountType;
  22. /// 用户id
  23. @property (copy) NSString* identifier;
  24. @end
  25. #endif