21 lines
496 B
C#
21 lines
496 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
using System.Collections.Generic;
|
|
using Aop.Api.Domain;
|
|
|
|
namespace Aop.Api.Response
|
|
{
|
|
/// <summary>
|
|
/// AlipayOpenMiniItemBatchqueryResponse.
|
|
/// </summary>
|
|
public class AlipayOpenMiniItemBatchqueryResponse : AopResponse
|
|
{
|
|
/// <summary>
|
|
/// 小程序商品列表
|
|
/// </summary>
|
|
[XmlArray("result_obj")]
|
|
[XmlArrayItem("item_v_o")]
|
|
public List<ItemVO> ResultObj { get; set; }
|
|
}
|
|
}
|