XSUser.h 770 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. #import <JSONModel/JSONModel.h>
  10. @interface XSUser : JSONModel
  11. @property (nonatomic, strong) NSString* uid;
  12. @property (nonatomic, strong) NSString* token;
  13. @property (nonatomic, strong) NSString* phone;
  14. @property (nonatomic, strong) NSString* userName;
  15. @property (nonatomic, strong) NSString* account;
  16. @property (nonatomic, strong) NSString* pwd;
  17. @property (nonatomic, strong) NSString* closeUrl;
  18. @property (nonatomic, assign) NSTimeInterval lastTime;
  19. @property (nonatomic, assign) BOOL isRegister;
  20. @property (nonatomic, readonly) NSString* name;
  21. @property (nonatomic, class) NSArray<XSUser*>* history;
  22. @end