using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// TransactionAmountDTO Data Structure.
///
[Serializable]
public class TransactionAmountDTO : AopObject
{
///
/// 金额
///
[XmlElement("amount")]
public string Amount { get; set; }
///
/// 币种
///
[XmlElement("currency")]
public string Currency { get; set; }
}
}