//
//  TCLocation.h
//  ticket
//
//  Created by liu康佳 on 16/9/8.
//  Copyright © 2016年 kanka. All rights reserved.
//

#import <Foundation/Foundation.h>

@interface TCLocation : NSObject

//经度
@property (nonatomic, assign) CGFloat longitude;
//纬度
@property (nonatomic, assign) CGFloat latitude;
//省
@property (nonatomic, copy) NSString *province;
//城市名
@property (nonatomic, copy) NSString *cityName;
//区
@property (nonatomic, copy) NSString *subLocality;
//地址全称
@property (nonatomic, copy) NSString *name;

@end
