NewGaoKaoApi/PaymentSDK/AliPay/Domain/AntMerchantExpandAssetinfoS...

21 lines
543 B
C#

using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// AntMerchantExpandAssetinfoSyncModel Data Structure.
/// </summary>
[Serializable]
public class AntMerchantExpandAssetinfoSyncModel : AopObject
{
/// <summary>
/// 传入需要反馈的物料信息对象列表.
/// </summary>
[XmlArray("asset_infos")]
[XmlArrayItem("asset_info_item")]
public List<AssetInfoItem> AssetInfos { get; set; }
}
}