27 lines
688 B
C#
27 lines
688 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
using System.Collections.Generic;
|
|
using Aop.Api.Domain;
|
|
|
|
namespace Aop.Api.Response
|
|
{
|
|
/// <summary>
|
|
/// AlipayOpenPublicPersonalizedExtensionBatchqueryResponse.
|
|
/// </summary>
|
|
public class AlipayOpenPublicPersonalizedExtensionBatchqueryResponse : AopResponse
|
|
{
|
|
/// <summary>
|
|
/// 扩展区套数
|
|
/// </summary>
|
|
[XmlElement("count")]
|
|
public long Count { get; set; }
|
|
|
|
/// <summary>
|
|
/// 扩展区信息
|
|
/// </summary>
|
|
[XmlArray("extensions")]
|
|
[XmlArrayItem("query_extension")]
|
|
public List<QueryExtension> Extensions { get; set; }
|
|
}
|
|
}
|