19 lines
436 B
C#
19 lines
436 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
using Aop.Api.Domain;
|
|
|
|
namespace Aop.Api.Response
|
|
{
|
|
/// <summary>
|
|
/// KoubeiMarketingCampaignActivityQueryResponse.
|
|
/// </summary>
|
|
public class KoubeiMarketingCampaignActivityQueryResponse : AopResponse
|
|
{
|
|
/// <summary>
|
|
/// 活动详情
|
|
/// </summary>
|
|
[XmlElement("camp_detail")]
|
|
public CampDetail CampDetail { get; set; }
|
|
}
|
|
}
|