using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// TemplateActionInfoDTO Data Structure.
///
[Serializable]
public class TemplateActionInfoDTO : AopObject
{
///
/// 行动点业务CODE,商户自定义
///
[JsonProperty("code")]
public string Code { get; set; }
///
/// 行动点展示文案
///
[JsonProperty("text")]
public string Text { get; set; }
///
/// 行动点跳转链接
///
[JsonProperty("url")]
public string Url { get; set; }
}
}