using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// FillContent Data Structure.
///
[Serializable]
public class FillContent : AopObject
{
///
/// 模板组件自定义key
///
[XmlElement("struct_key")]
public string StructKey { get; set; }
///
/// 模板值,该值长度取决于配置模板时该字段的限制
///
[XmlElement("value")]
public string Value { get; set; }
}
}