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
{
///
/// 获取或设置地理位置纬度。
///
[Newtonsoft.Json.JsonProperty("Latitude")]
[System.Text.Json.Serialization.JsonPropertyName("Latitude")]
[System.Xml.Serialization.XmlElement("Latitude")]
public decimal Latitude { get; set; }
///
/// 获取或设置地理位置经度。
///
[Newtonsoft.Json.JsonProperty("Longitude")]
[System.Text.Json.Serialization.JsonPropertyName("Longitude")]
[System.Xml.Serialization.XmlElement("Longitude")]
public decimal Longitude { get; set; }
///
/// 获取或设置地理位置精度。
///
[Newtonsoft.Json.JsonProperty("Precision")]
[System.Text.Json.Serialization.JsonPropertyName("Precision")]
[System.Xml.Serialization.XmlElement("Precision")]
public decimal Precision { get; set; }
}
}