19 lines
473 B
C#
19 lines
473 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
using Aop.Api.Domain;
|
|
|
|
namespace Aop.Api.Response
|
|
{
|
|
/// <summary>
|
|
/// AlipayDataDataserviceAdCreativeBatchqueryResponse.
|
|
/// </summary>
|
|
public class AlipayDataDataserviceAdCreativeBatchqueryResponse : AopResponse
|
|
{
|
|
/// <summary>
|
|
/// 创意按条件分页查询结果
|
|
/// </summary>
|
|
[XmlElement("creative_list")]
|
|
public PageCreative CreativeList { get; set; }
|
|
}
|
|
}
|