client_Hale
2018-09-28 e093b4c88c58ecec7d0b8c34c45b4615a5c3f594
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
//
//  MRRoleInformation.h
//  MaoerProject
//
//  Created by eliolu on 2018/8/20.
//  Copyright © 2018年 eliolu. All rights reserved.
//
 
#import <Foundation/Foundation.h>
 
@interface MRRoleInformation : NSObject
 
+(MRRoleInformation *)getInstance;
 
@property(nonatomic, strong) NSString *productid;
@property(nonatomic, strong) NSString *uid;
@property(nonatomic, strong) NSString *email;
@property(nonatomic, strong) NSString *roleid;
@property(nonatomic, strong) NSString *rolename;
@property(nonatomic, strong) NSString *rolelevel;
@property(nonatomic, strong) NSString *extradata;
@property(nonatomic, strong) NSString *serverid;
@property(nonatomic, strong) NSString *gamecno;
@property(nonatomic, strong) NSString *channel;
@property(nonatomic, strong) NSString *notifyurl;
@property(nonatomic, strong) NSString *vip_level;
@property(nonatomic, strong) NSString *type;//create-创角接口/login-角色登陆接口
 
@end