using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// Paragraph Data Structure. /// [Serializable] public class Paragraph : AopObject { /// /// 图片列表 /// [XmlArray("pictures")] [XmlArrayItem("picture")] public List Pictures { get; set; } /// /// 正文介绍 /// [XmlElement("text")] public string Text { get; set; } } }