|
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace GpsCardGatewayPosition.Service.Biz.Location.Dto.Gaode
- {
- public class GetAddressServiceResult
- {
- public GetAddressServiceResult()
- {
- Flag = false;
- Address = "";
- City = "";
- }
-
-
-
-
- public bool Flag { get; set; }
-
-
-
- public string Address { get; set; }
-
-
-
- public string Province { get; set; }
-
-
-
- public string City { get; set; }
-
-
-
- public string District { get; set; }
-
-
-
- public string CityCode { get; set; }
-
-
-
- public string HashParam { get; set; }
- }
- }
|