using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// Attachment Data Structure. /// [Serializable] public class Attachment : AopObject { /// /// 流程附件名称 /// [XmlElement("attachment_name")] public string AttachmentName { get; set; } /// /// 流程附件id /// [XmlElement("file_id")] public string FileId { get; set; } } }