using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// SignField Data Structure.
///
[Serializable]
public class SignField : AopObject
{
///
/// 平台自动签
///
[XmlElement("auto_execute")]
public string AutoExecute { get; set; }
///
/// 签署人信息
///
[XmlElement("signer")]
public Signer Signer { get; set; }
///
/// 模板组件id
///
[XmlElement("struct_key")]
public string StructKey { get; set; }
}
}