using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// AlipayEcoSignFlowCreateModel Data Structure.
///
[Serializable]
public class AlipayEcoSignFlowCreateModel : AopObject
{
///
/// 附件信息
///
[XmlArray("attachments")]
[XmlArrayItem("attachment")]
public List Attachments { get; set; }
///
/// 流程主题
///
[XmlElement("business_scene")]
public string BusinessScene { get; set; }
///
/// 流程配置信息
///
[XmlElement("config_info")]
public ConfigInfo ConfigInfo { get; set; }
///
/// 模板信息
///
[XmlArray("template_infos")]
[XmlArrayItem("template_info")]
public List TemplateInfos { get; set; }
}
}