using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// ActivityShop Data Structure. /// [Serializable] public class ActivityShop : AopObject { /// /// 承诺消费活动门店地址 /// [XmlElement("shop_address")] public string ShopAddress { get; set; } /// /// 承诺消费活动门店ID /// [XmlElement("shop_id")] public string ShopId { get; set; } /// /// 承诺消费门店纬度 /// [XmlElement("shop_latitude")] public string ShopLatitude { get; set; } /// /// 承诺消费门店经度信息 /// [XmlElement("shop_longitude")] public string ShopLongitude { get; set; } /// /// 承诺消费活动门店名称 /// [XmlElement("shop_name")] public string ShopName { get; set; } } }