18 lines
384 B
C#
18 lines
384 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Response
|
|
{
|
|
/// <summary>
|
|
/// AlipayEcapiprodDataPutResponse.
|
|
/// </summary>
|
|
public class AlipayEcapiprodDataPutResponse : AopResponse
|
|
{
|
|
/// <summary>
|
|
/// 数据版本
|
|
/// </summary>
|
|
[XmlElement("data_version")]
|
|
public string DataVersion { get; set; }
|
|
}
|
|
}
|