using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// Keyword Data Structure.
///
[Serializable]
public class Keyword : AopObject
{
///
/// 当前文字颜色
///
[JsonProperty("color")]
public string Color { get; set; }
///
/// 模板中占位符的值
///
[JsonProperty("value")]
public string Value { get; set; }
}
}