21 lines
572 B
C#
21 lines
572 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
using System.Collections.Generic;
|
|
using Aop.Api.Domain;
|
|
|
|
namespace Aop.Api.Response
|
|
{
|
|
/// <summary>
|
|
/// AlipayOpenPublicSinglearticleDataBatchqueryResponse.
|
|
/// </summary>
|
|
public class AlipayOpenPublicSinglearticleDataBatchqueryResponse : AopResponse
|
|
{
|
|
/// <summary>
|
|
/// 单篇文章分析数据列表
|
|
/// </summary>
|
|
[XmlArray("data_list")]
|
|
[XmlArrayItem("single_article_analysis_data")]
|
|
public List<SingleArticleAnalysisData> DataList { get; set; }
|
|
}
|
|
}
|