19 lines
448 B
C#
19 lines
448 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
using Aop.Api.Domain;
|
|
|
|
namespace Aop.Api.Response
|
|
{
|
|
/// <summary>
|
|
/// KoubeiAdvertDeliveryDiscountQueryResponse.
|
|
/// </summary>
|
|
public class KoubeiAdvertDeliveryDiscountQueryResponse : AopResponse
|
|
{
|
|
/// <summary>
|
|
/// 广告投放出去的优惠信息
|
|
/// </summary>
|
|
[XmlElement("discount")]
|
|
public DiscountInfo Discount { get; set; }
|
|
}
|
|
}
|