CityItem.h 412 B

1234567891011121314151617181920
  1. //
  2. // CityItem.h
  3. // ChinaCityList
  4. //
  5. // Created by zjq on 15/10/27.
  6. // Copyright © 2015年 zhengjq. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface CityItem : NSObject
  10. @property (nonatomic, assign) NSInteger key;
  11. @property (nonatomic, copy) NSString *titleName;
  12. - (instancetype)initWithTitleName:(NSString *)titleName;
  13. + (instancetype)initWithTitleName:(NSString *)titleName;
  14. @end