18 lines
372 B
C#
18 lines
372 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Response
|
|
{
|
|
/// <summary>
|
|
/// AlipayEcoSignFlowCreateResponse.
|
|
/// </summary>
|
|
public class AlipayEcoSignFlowCreateResponse : AopResponse
|
|
{
|
|
/// <summary>
|
|
/// 流程Id
|
|
/// </summary>
|
|
[XmlElement("flow_id")]
|
|
public string FlowId { get; set; }
|
|
}
|
|
}
|