using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// AlipayDataItemGoodsList Data Structure.
///
[Serializable]
public class AlipayDataItemGoodsList : AopObject
{
///
/// 单品的描述信息
///
[XmlElement("desc")]
public string Desc { get; set; }
///
/// 单品id列表
///
[XmlArray("goods_list")]
[XmlArrayItem("string")]
public List GoodsList { get; set; }
}
}