19 lines
508 B
C#
19 lines
508 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
using Aop.Api.Domain;
|
|
|
|
namespace Aop.Api.Response
|
|
{
|
|
/// <summary>
|
|
/// KoubeiMarketingDataCustomreportDetailQueryResponse.
|
|
/// </summary>
|
|
public class KoubeiMarketingDataCustomreportDetailQueryResponse : AopResponse
|
|
{
|
|
/// <summary>
|
|
/// 自定义报表规则条件的详细信息
|
|
/// </summary>
|
|
[XmlElement("report_condition_info")]
|
|
public CustomReportCondition ReportConditionInfo { get; set; }
|
|
}
|
|
}
|