NewGaoKaoApi/PaymentSDK/AliPay/Domain/TemplateEInfoMoreDTO.cs

25 lines
703 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>
/// TemplateEInfoMoreDTO Data Structure.
/// </summary>
[Serializable]
public class TemplateEInfoMoreDTO : AopObject
{
/// <summary>
/// 标题文案,支持以 $动态参数$ 形式的自定义动态参数传值。
/// </summary>
[XmlElement("title")]
public string Title { get; set; }
/// <summary>
/// 跳转链接需要带上http、https、alipays等协议头支持以 $动态参数$ 形式的自定义动态参数传值。
/// </summary>
[XmlElement("url")]
public string Url { get; set; }
}
}