NewGaoKaoApi/PaymentSDK/AliPay/Domain/MemberOpenInfoModel.cs

25 lines
652 B
C#
Raw 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>
/// MemberOpenInfoModel Data Structure.
/// </summary>
[Serializable]
public class MemberOpenInfoModel : AopObject
{
/// <summary>
/// 开卡连接必须http、https开头
/// </summary>
[XmlElement("open_url")]
public string OpenUrl { get; set; }
/// <summary>
/// 微信端开卡链接不能是alipay域名 如果会员模板支持微信端,则必填
/// </summary>
[XmlElement("wechat_open_url")]
public string WechatOpenUrl { get; set; }
}
}