mirror of
https://github.com/wu736139669/Ash_AWord.git
synced 2026-08-06 06:15:20 +00:00
28 lines
687 B
Objective-C
28 lines
687 B
Objective-C
//
|
|
// XMFishBaseCode.h
|
|
// FanLiKa
|
|
//
|
|
// Created by aDu on 14-10-23.
|
|
// Copyright (c) 2014年 xmfish. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface XMFishBaseCode : NSObject
|
|
|
|
@property (nonatomic, strong, readwrite) NSString *token;
|
|
@property (nonatomic, strong, readwrite) NSString *callback;
|
|
@property (nonatomic, strong, readwrite) NSMutableDictionary *params;
|
|
|
|
@property (nonatomic, strong, readwrite) NSString *uid;
|
|
@property (nonatomic, strong, readwrite) NSString *username;
|
|
@property (nonatomic, strong, readwrite) NSString *cityId;
|
|
|
|
@property (nonatomic, strong, readwrite) NSString *mobile;
|
|
|
|
- (NSString *)getBaseCode;
|
|
|
|
+ (NSString *)getWkey;
|
|
|
|
@end
|