25 lines
528 B
C#
25 lines
528 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// ExtendFieldInfo Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class ExtendFieldInfo : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 字段名
|
|
/// </summary>
|
|
[XmlElement("field_name")]
|
|
public string FieldName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 字段值
|
|
/// </summary>
|
|
[XmlElement("field_value")]
|
|
public string FieldValue { get; set; }
|
|
}
|
|
}
|