You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

56 lines
912 B

2 years ago
//
// CityModelData.h
// ProvinceAndCityAndTown
//
// Created by 冷求慧 on 16/12/27.
// Copyright © 2016年 冷求慧. All rights reserved.
//
#import <Foundation/Foundation.h>
@class Province,City,District;
@interface CityModelData : NSObject
/**
*
*/
@property (nonatomic, strong) NSArray<Province *> *province;
@end
@interface Province : NSObject
/**
*
*/
@property (nonatomic, copy) NSString *name;
/**
*
*/
@property (nonatomic, strong) NSArray<City *> *city;
@end
@interface City : NSObject
/**
*
*/
@property (nonatomic, copy) NSString *name;
/**
*
*/
@property (nonatomic, strong) NSArray<District *> *district;
@end
@interface District : NSObject
/**
*
*/
@property (nonatomic, copy) NSString *name;
/**
*
*/
@property (nonatomic, copy) NSString *zipcode;
@end