using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// TransactionAmountModifierDTO Data Structure.
///
[Serializable]
public class TransactionAmountModifierDTO : AopObject
{
///
/// 金额
///
[XmlElement("amount")]
public TransactionAmountDTO Amount { get; set; }
///
/// 金额类型说明
///
[XmlElement("description")]
public string Description { get; set; }
///
/// 金额类型
///
[XmlElement("type")]
public string Type { get; set; }
}
}