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 GaodeGpsRequest
{
public GaodeGpsRequest(decimal lon, decimal lat)
{
Longitude = lon;
Latitude = lat;
}
///
/// 高德经度
///
public decimal Longitude { get; set; }
///
/// 高德纬度
///
public decimal Latitude { get; set; }
}
}