using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// KbAdvertDealBillResponse Data Structure. /// [Serializable] public class KbAdvertDealBillResponse : AopObject { /// /// 账单下载地址(为空表示查无账单) /// [XmlElement("download_url")] public string DownloadUrl { get; set; } } }