25 lines
542 B
C#
25 lines
542 B
C#
using System;
|
||
using System.Xml.Serialization;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// EpElement Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class EpElement : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 企业征信数据key
|
||
/// </summary>
|
||
[XmlElement("key")]
|
||
public string Key { get; set; }
|
||
|
||
/// <summary>
|
||
/// 企业征信数据value,字段长度不定。
|
||
/// </summary>
|
||
[XmlElement("value")]
|
||
public string Value { get; set; }
|
||
}
|
||
}
|