using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// KbAdvertSettleBillResponse Data Structure.
///
[Serializable]
public class KbAdvertSettleBillResponse : AopObject
{
///
/// 账单下载地址(为空表示查无账单)
///
[XmlElement("download_url")]
public string DownloadUrl { get; set; }
///
/// 结算账单打款日期(为空表示未打款)
///
[XmlElement("paid_date")]
public string PaidDate { get; set; }
}
}