using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// PriceInfo Data Structure.
///
[Serializable]
public class PriceInfo : AopObject
{
///
/// 商品价格维度信息
///
[XmlElement("dimension")]
public string Dimension { get; set; }
///
/// 价格,单位为元
///
[XmlElement("price")]
public string Price { get; set; }
}
}