using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayPassTemplateAddModel Data Structure.
///
[Serializable]
public class AlipayPassTemplateAddModel : AopObject
{
///
/// 模板内容信息,遵循JSON规范,详情参见tpl_content参数说明:https://doc.open.alipay.com/doc2/detail.htm?treeId=193&articleId=105249&docType=1#tpl_content
///
[XmlElement("tpl_content")]
public string TplContent { get; set; }
///
/// 商户用于控制模版的唯一性。(可以使用时间戳保证唯一性)
///
[XmlElement("unique_id")]
public string UniqueId { get; set; }
}
}