using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// AttachmentExplain Data Structure.
///
[Serializable]
public class AttachmentExplain : AopObject
{
///
/// 允许上传更多附件。开启后,除了“附件列表”中指定的内容,签署人可自由上传之多10张图片。默认值为false
///
[XmlElement("allow_more_uploads")]
public bool AllowMoreUploads { get; set; }
///
/// 描述
///
[XmlElement("description")]
public string Description { get; set; }
///
/// 附件列表
///
[XmlArray("details")]
[XmlArrayItem("detail")]
public List Details { get; set; }
///
/// 附件标题(collect_attachement值为true时必填
///
[XmlElement("title")]
public string Title { get; set; }
}
}