123456789101112131415161718192021222324 |
- //
- // CountryInfo.h
- // ZGTranslateUtils
- //
- // Created by zhuge on 20/6/14.
- // Copyright (c) 2014 com.woodenperon. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface CountryInfo : NSObject
- @property (nonatomic, retain) NSString *shortName;
- @property (nonatomic, retain) NSString *chineseName;
- @property (nonatomic, retain) NSString *englishName;
- @property (nonatomic, assign) int chineseIndex;
- @property (nonatomic, assign) int englishIndex;
- @property (nonatomic, retain) NSString *translateName;
- +(CountryInfo*) createWithDic:(NSDictionary *)dic;
- -(NSString *)displayName;
- @end
|