17 lines
395 B
Objective-C
17 lines
395 B
Objective-C
//
|
|
// AccountResult.h
|
|
// Yoosee
|
|
//
|
|
// Created by guojunyi on 14-4-25.
|
|
// Copyright (c) 2014年 guojunyi. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface AccountResult : NSObject
|
|
@property (strong, nonatomic) NSString* phone;
|
|
@property (strong, nonatomic) NSString* email;
|
|
@property (strong, nonatomic) NSString* countryCode;
|
|
@property (nonatomic) int error_code;
|
|
@end
|