using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// AlipayBossFncSettleCaptureCreateModel Data Structure.
///
[Serializable]
public class AlipayBossFncSettleCaptureCreateModel : AopObject
{
///
/// 请款创建单列表
///
[XmlArray("capture_create_order_list")]
[XmlArrayItem("capture_create_order")]
public List CaptureCreateOrderList { get; set; }
}
}