using System; using System.Collections.Generic; namespace SKIT.FlurlHttpClient.Wechat.Api.Events { /// /// 表示 EVENT.LOCATION 事件的数据。 /// REF: https://developers.weixin.qq.com/doc/offiaccount/Message_Management/Receiving_event_pushes.html#%E4%B8%8A%E6%8A%A5%E5%9C%B0%E7%90%86%E4%BD%8D%E7%BD%AE%E4%BA%8B%E4%BB%B6 /// public class LocationPushEvent : WechatApiEvent, WechatApiEvent.Types.IXmlSerializable { /// /// 获取或设置地理位置纬度。 /// [System.Xml.Serialization.XmlElement("Latitude")] public double Latitude { get; set; } /// /// 获取或设置地理位置经度。 /// [System.Xml.Serialization.XmlElement("Longitude")] public double Longitude { get; set; } /// /// 获取或设置地理位置精度。 /// [System.Xml.Serialization.XmlElement("Precision")] public double Precision { get; set; } } }