- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace GpsCardGatewayPosition.Service.Biz.Location.Dto.Wayz
- {
- public class GetWayzPositionServiceResult
- {
-
-
-
- public bool CanRetry { get; set; } = true;
- public bool Flag { get; set; }
-
-
- public decimal Lon { get; set; }
- public decimal Lat { get; set; }
- public int Accuracy { get; set; }
- public string Poi { get; set; } = string.Empty;
- public string AdCode { get; set; } = string.Empty;
-
-
-
- public string HashParam { get; set; }
-
-
-
- public string Province { get; set; }
-
-
-
- public string City { get; set; }
-
-
-
- public string CityCode { get; set; } = default;
-
-
-
- public string District { get; set; }
-
-
-
- public string Address { get; set; }
-
-
-
-
-
- public string FullAddress { get; set; } = string.Empty;
-
-
-
- public string OriginalResponse { get; set; } = string.Empty;
- }
- }
|