31 lines
790 B
C#
31 lines
790 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// KbAdvertSubjectResponse Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class KbAdvertSubjectResponse : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 分佣规则
|
|
/// </summary>
|
|
[XmlElement("commission_clause")]
|
|
public KbAdvertCommissionClauseResponse CommissionClause { get; set; }
|
|
|
|
/// <summary>
|
|
/// 标的类型 voucher-券
|
|
/// </summary>
|
|
[XmlElement("type")]
|
|
public string Type { get; set; }
|
|
|
|
/// <summary>
|
|
/// 券标的 只有type=voucher才会有值
|
|
/// </summary>
|
|
[XmlElement("voucher")]
|
|
public KbAdvertSubjectVoucherResponse Voucher { get; set; }
|
|
}
|
|
}
|