using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// PreAmountClauseResult Data Structure.
///
[Serializable]
public class PreAmountClauseResult : AopObject
{
///
/// 具体的金额
///
[XmlElement("amount")]
public string Amount { get; set; }
///
/// 用于指定金额的描述信息
///
[XmlElement("desc")]
public string Desc { get; set; }
}
}