21 lines
513 B
C#
21 lines
513 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// TradeSettleInfo Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class TradeSettleInfo : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 交易结算明细信息
|
|
/// </summary>
|
|
[XmlArray("trade_settle_detail_list")]
|
|
[XmlArrayItem("trade_settle_detail")]
|
|
public List<TradeSettleDetail> TradeSettleDetailList { get; set; }
|
|
}
|
|
}
|