using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Aop.Api.Domain;
namespace Aop.Api.Response
{
///
/// AlipayDataDataserviceAdDataQueryResponse.
///
public class AlipayDataDataserviceAdDataQueryResponse : AopResponse
{
///
/// 汇总结果数据列表
///
[XmlArray("data_list")]
[XmlArrayItem("data_detail")]
public List DataList { get; set; }
}
}