RDSUserLocation.h 909 B

1234567891011121314151617181920212223
  1. //
  2. // RDSUserLocation.h
  3. // SmartLightForBigFish
  4. //
  5. // Created by coderYK on 2017/9/11.
  6. // Copyright © 2017年 RD. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface RDSUserLocation : NSObject // <NSCopying>
  10. @property (nonatomic, strong) NSError *error; // ** 错误信息*/
  11. @property (nonatomic, strong, readonly) NSString *provinceString; // ** 省份*/
  12. @property (nonatomic, strong, readonly) NSString *cityString; // ** 城市*/
  13. @property (nonatomic, strong, readonly) NSString *districtString; // ** 区*/
  14. @property (nonatomic, strong, readonly) NSString *detailString; // ** 描述*/
  15. @property (nonatomic, strong, readonly) NSNumber *latitude; // ** 纬度*/
  16. @property (nonatomic, strong, readonly) NSNumber *longitude; // ** 经度*/
  17. @property (nonatomic, strong, readonly) NSString *deviceLocation; // ** 发送给设备的定位信息*/
  18. @end