XSUser.h 736 B

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // XSUser.h
  3. // XenonSDK
  4. //
  5. // Created by SAGESSE on 2019/5/29.
  6. // Copyright © 2019 SAGESSE. All rights reserved.
  7. //
  8. #import "JSONModel.h"
  9. @interface XSUser : JSONModel
  10. @property (nonatomic, strong) NSString* uid;
  11. @property (nonatomic, strong) NSString* token;
  12. @property (nonatomic, strong) NSString* phone;
  13. @property (nonatomic, strong) NSString* userName;
  14. @property (nonatomic, strong) NSString* account;
  15. @property (nonatomic, strong) NSString* pwd;
  16. @property (nonatomic, strong) NSString* closeUrl;
  17. @property (nonatomic, assign) NSTimeInterval lastTime;
  18. @property (nonatomic, assign) BOOL isRegister;
  19. @property (nonatomic, readonly) NSString* name;
  20. @property (nonatomic, class) NSArray<XSUser*>* history;
  21. @end