19 lines
427 B
C#
19 lines
427 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
using Aop.Api.Domain;
|
|
|
|
namespace Aop.Api.Response
|
|
{
|
|
/// <summary>
|
|
/// AlipayDataDataserviceAdPlanQueryResponse.
|
|
/// </summary>
|
|
public class AlipayDataDataserviceAdPlanQueryResponse : AopResponse
|
|
{
|
|
/// <summary>
|
|
/// 计划详情
|
|
/// </summary>
|
|
[XmlElement("plan_detail")]
|
|
public OuterPlan PlanDetail { get; set; }
|
|
}
|
|
}
|