NewGaoKaoApi/PaymentSDK/AliPay/Domain/Keyword.cs

25 lines
516 B
C#

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