using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// AttachmentExplainBean Data Structure. /// [Serializable] public class AttachmentExplainBean : AopObject { /// /// 页面展示的任务描(collect_attachement值为true时必填) /// [XmlElement("description")] public string Description { get; set; } /// /// 附件列表,用于定义每个附件code的描述及页面展示顺序 /// [XmlArray("details")] [XmlArrayItem("detail_bean")] public List Details { get; set; } /// /// 页面展示的任务标题(collect_attachement值为true时必填) /// [XmlElement("title")] public string Title { get; set; } } }