19 lines
478 B
C#
19 lines
478 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
using Aop.Api.Domain;
|
|
|
|
namespace Aop.Api.Response
|
|
{
|
|
/// <summary>
|
|
/// AlipayMarketingToolFengdieSitesBatchqueryResponse.
|
|
/// </summary>
|
|
public class AlipayMarketingToolFengdieSitesBatchqueryResponse : AopResponse
|
|
{
|
|
/// <summary>
|
|
/// 获取云凤蝶站点列表返回值模型
|
|
/// </summary>
|
|
[XmlElement("data")]
|
|
public FengdieSitesListRespModel Data { get; set; }
|
|
}
|
|
}
|