Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/Keyword.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

24 lines
452 B
C#

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