namespace BBWYB.Client.Models
{
public class ConsigneeResponse
{
///
/// 联系人名称
///
public string ContactName { get; set; }
///
/// 座机
///
public string TelePhone { get; set; }
///
/// 手机
///
public string Mobile { get; set; }
public string Address { get; set; }
///
/// 省
///
public string Province { get; set; }
///
/// 市
///
public string City { get; set; }
///
/// 县
///
public string County { get; set; }
///
/// 镇
///
public string Town { get; set; }
public bool IsDecode { get; set; }
}
public class ConsigneeSimpleResponse
{
///
/// 联系人名称
///
public string ContactName { get; set; }
///
/// 座机
///
public string TelePhone { get; set; }
///
/// 手机
///
public string Mobile { get; set; }
///
/// 地址
///
public string Address { get; set; }
///
/// 买家账号
///
//public string BuyerAccount { get; set; }
}
}