21 lines
512 B
C#
21 lines
512 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
using System.Collections.Generic;
|
|
using Aop.Api.Domain;
|
|
|
|
namespace Aop.Api.Response
|
|
{
|
|
/// <summary>
|
|
/// AlipayOpenAppAppcontentItemBatchqueryResponse.
|
|
/// </summary>
|
|
public class AlipayOpenAppAppcontentItemBatchqueryResponse : AopResponse
|
|
{
|
|
/// <summary>
|
|
/// 商品信息
|
|
/// </summary>
|
|
[XmlArray("items")]
|
|
[XmlArrayItem("app_content_item")]
|
|
public List<AppContentItem> Items { get; set; }
|
|
}
|
|
}
|