using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// MakePriceResult Data Structure.
///
[Serializable]
public class MakePriceResult : AopObject
{
///
/// 定价对象原价
///
[XmlElement("base_price_cent")]
public string BasePriceCent { get; set; }
///
/// 定价对象类型
///
[XmlElement("product_type")]
public string ProductType { get; set; }
///
/// 定价对象推荐价格
///
[XmlElement("promo_price")]
public string PromoPrice { get; set; }
}
}