1234567891011121314151617181920212223242526272829303132333435 |
- //
- // XSUser.h
- // XenonSDK
- //
- // Created by SAGESSE on 2019/5/29.
- // Copyright © 2019 SAGESSE. All rights reserved.
- //
- #import <JSONModel/JSONModel.h>
- @interface XSUser : JSONModel
- @property (nonatomic, strong) NSString* uid;
- @property (nonatomic, strong) NSString* token;
- @property (nonatomic, strong) NSString* phone;
- @property (nonatomic, strong) NSString* userName;
- @property (nonatomic, strong) NSString* account;
- @property (nonatomic, strong) NSString* pwd;
- @property (nonatomic, strong) NSString* closeUrl;
- @property (nonatomic, assign) NSTimeInterval lastTime;
- @property (nonatomic, assign) BOOL isRegister;
- @property (nonatomic, readonly) NSString* name;
- @property (nonatomic, class) NSArray<XSUser*>* history;
- @end
|