using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// SimpleShopInfo Data Structure.
///
[Serializable]
public class SimpleShopInfo : AopObject
{
///
/// 地址信息
///
[XmlElement("address")]
public string Address { get; set; }
///
/// 线下门店ID
///
[XmlElement("shop_id")]
public string ShopId { get; set; }
///
/// 线下店名称
///
[XmlElement("shop_name")]
public string ShopName { get; set; }
}
}