22 lines
431 B
Objective-C
22 lines
431 B
Objective-C
//
|
|
// NTESLoginManager.h
|
|
// NIM
|
|
//
|
|
// Created by amao on 5/26/15.
|
|
// Copyright (c) 2015 Netease. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface LoginData : NSObject
|
|
@property (nonatomic,copy) NSString *account;
|
|
@property (nonatomic,copy) NSString *token;
|
|
@end
|
|
|
|
@interface NTESLoginManager : NSObject
|
|
+ (instancetype)sharedManager;
|
|
|
|
@property (nonatomic,strong) LoginData *currentLoginData;
|
|
|
|
@end
|