using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// EpInfo Data Structure. /// [Serializable] public class EpInfo : AopObject { /// /// 企业征信元素列表,如一套企业工商照面信息。数据长度不定。 /// [XmlArray("ep_element_list")] [XmlArrayItem("ep_element")] public List EpElementList { get; set; } } }