using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// Shop Data Structure.
///
[Serializable]
public class Shop : AopObject
{
///
/// 地址信息
///
[XmlElement("address")]
public Address Address { get; set; }
///
/// 店铺名称
///
[XmlElement("name")]
public string Name { get; set; }
///
/// 商户id
///
[XmlElement("seller_id")]
public string SellerId { get; set; }
///
/// 门店类型,只能选择SMID/MID/PID其中一个
///
[XmlElement("type")]
public string Type { get; set; }
}
}