using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// AlipayItemGoodsList Data Structure.
///
[Serializable]
public class AlipayItemGoodsList : AopObject
{
///
/// 外部单品的描述信息(此字段暂时无用)
///
[XmlElement("desc")]
public string Desc { get; set; }
///
/// 外部单品id列表,传入服务商、商户系统中的商品id。
///
[XmlArray("goods_list")]
[XmlArrayItem("string")]
public List GoodsList { get; set; }
}
}