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