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