using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// PriceInformation Data Structure.
///
[Serializable]
public class PriceInformation : AopObject
{
///
/// 对应资产的金额,比如88.66等。如果是现金,单位元
///
[XmlElement("amount")]
public string Amount { get; set; }
///
/// 现金MONEY、家庭分FAMILY_POINT、会员分ANT_POINT等
///
[XmlElement("type")]
public string Type { get; set; }
}
}