using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// ReceiverAddressInfo Data Structure.
///
[Serializable]
public class ReceiverAddressInfo : AopObject
{
///
/// 收货地址
///
[XmlElement("address")]
public string Address { get; set; }
///
/// 中国标准城市区域码
///
[XmlElement("division_code")]
public string DivisionCode { get; set; }
///
/// 收货人手机号
///
[XmlElement("mobile")]
public string Mobile { get; set; }
///
/// 收货人的姓名
///
[XmlElement("name")]
public string Name { get; set; }
///
/// 收货地址邮编
///
[XmlElement("zip")]
public string Zip { get; set; }
}
}