NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOpenPublicTemplateMes...

19 lines
574 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>
/// AlipayOpenPublicTemplateMessageGetModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOpenPublicTemplateMessageGetModel : AopObject
{
/// <summary>
/// 消息母板id登陆生活号后台(fuwu.alipay.com)点击菜单“模板消息”点击“模板库”即可看到相应模板的消息母板id
/// </summary>
[XmlElement("template_id")]
public string TemplateId { get; set; }
}
}