using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// PreAmountInfoResult Data Structure.
///
[Serializable]
public class PreAmountInfoResult : AopObject
{
///
/// 前置费用明细列表
///
[XmlArray("pre_amount_list")]
[XmlArrayItem("pre_amount_clause_result")]
public List PreAmountList { get; set; }
///
/// 金额
///
[XmlElement("total_pre_mount")]
public string TotalPreMount { get; set; }
}
}