19 lines
487 B
C#
19 lines
487 B
C#
using System;
|
||
using System.Xml.Serialization;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// AlipayMarketingCardTemplateQueryModel Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class AlipayMarketingCardTemplateQueryModel : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 支付宝卡模板ID(模板创建接口返回的支付宝端模板ID)
|
||
/// </summary>
|
||
[XmlElement("template_id")]
|
||
public string TemplateId { get; set; }
|
||
}
|
||
}
|