Files
juipnet/Services/Hncore.Pass.PaymentCenter/Pay/WeiFuTong/AliJsPay/AliJsPayResponse.cs

14 lines
394 B
C#
Raw Normal View History

2020-10-07 20:25:03 +08:00
using System.Xml.Serialization;
namespace Hncore.Pass.PaymentCenter.WeiFuTong.AliJsPay
{
[XmlRoot("xml", Namespace = "")]
public class AliJsPayResponse: WeiFuTongResponseBase
{
/// <summary>
/// JSON字符串自行唤起支付宝钱包支付
/// </summary>
[XmlElement("pay_info")]
public string PayInfo { get; set; }
}
}