NewGaoKaoApi/PaymentSDK/AliPay/Domain/TemplateRemindDTO.cs

19 lines
594 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>
/// TemplateRemindDTO Data Structure.
/// </summary>
[Serializable]
public class TemplateRemindDTO : AopObject
{
/// <summary>
/// 提醒默认的提前秒数3600-24×3600秒之间。即将到期时提醒用户使用卡券不设置则按照券类型默认时间提醒一般为36小时。支持以 $动态参数$ 形式的自定义动态参数传值。
/// </summary>
[XmlElement("offset")]
public string Offset { get; set; }
}
}