QYUserInfo.h 384 B

1234567891011121314151617181920212223242526
  1. //
  2. // QYUserInfo.h
  3. // QYSDK
  4. //
  5. // Created by Netease on 1/11/16.
  6. // Copyright (c) 2017 Netease. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. /**
  10. * 个人信息
  11. */
  12. @interface QYUserInfo : NSObject
  13. /**
  14. * 个人帐号Id
  15. */
  16. @property (nonatomic, copy) NSString *userId;
  17. /**
  18. * 用户详细信息json数据
  19. */
  20. @property (nonatomic, copy) NSString *data;
  21. @end