12345678910111213141516171819202122232425262728293031323334353637 |
- //
- // XSUser.h
- // XenonSDK
- //
- // Created by SAGESSE on 2019/5/29.
- // Copyright © 2019 SAGESSE. All rights reserved.
- //
- #import "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
|