using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayEcoMapGeocodingReverseModel Data Structure.
///
[Serializable]
public class AlipayEcoMapGeocodingReverseModel : AopObject
{
///
/// 渠道 0-高德地图 1-百度地图
///
[XmlElement("channel")]
public long Channel { get; set; }
///
/// 纬度
///
[XmlElement("latitude")]
public string Latitude { get; set; }
///
/// 经度
///
[XmlElement("longitude")]
public string Longitude { get; set; }
}
}