NewGaoKaoApi/PaymentSDK/AliPay/Domain/AccessParams.cs

19 lines
496 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// AccessParams Data Structure.
/// </summary>
[Serializable]
public class AccessParams : AopObject
{
/// <summary>
/// 目前支持以下值: 1. ALIPAYAPP 钱包h5页面签约 2. QRCODE(扫码签约) 3. QRCODEORSMS(扫码签约或者短信签约)
/// </summary>
[XmlElement("channel")]
public string Channel { get; set; }
}
}