KWMUserModel.h 575 Bytes
Newer Older
houweibin committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
//
//  KWMUserModel.h
//  iCemarose
//
//  Created by 陈荣科 on 16/9/12.
//  Copyright © 2016年 kollway. All rights reserved.
//

#import "KWMBaseModel.h"
#import "Buy/Buy.h"

@interface KWMUserModel : KWMBaseModel
@property (nonatomic) NSString *name;
@property (nonatomic) NSString *password;
@property (nonatomic) NSString *email;
@property (nonatomic) NSDictionary *customerJSON;
@property (nonatomic) NSDictionary *tokenJSON;

+ (instancetype)shareUser;
lee committed
20
+ (void) saveAccountByCredentials:(BUYAccountCredentials *) credentials;
lee committed
21 22
- (void) login;
- (void) logout;
houweibin committed
23
@end