using System.Collections.Generic;
using System.Text.Json.Serialization;
namespace Essensoft.AspNetCore.Payment.Alipay.Domain
{
///
/// AlipayBossFncSettleSettlementbillCreateModel Data Structure.
///
public class AlipayBossFncSettleSettlementbillCreateModel : AlipayObject
{
///
/// 结算单创建请求列表
///
[JsonPropertyName("settlement_bill_create_order")]
public List SettlementBillCreateOrder { get; set; }
}
}