18 lines
493 B
C#
18 lines
493 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Response
|
|
{
|
|
/// <summary>
|
|
/// AlipayEbppInvoiceSycnResponse.
|
|
/// </summary>
|
|
public class AlipayEbppInvoiceSycnResponse : AopResponse
|
|
{
|
|
/// <summary>
|
|
/// 支付宝发票管家发票详情页链接地址 如果同步的发票是多张时,此链接为当前用户的已开立发票列表地址
|
|
/// </summary>
|
|
[XmlElement("url")]
|
|
public string Url { get; set; }
|
|
}
|
|
}
|