25 lines
535 B
C#
25 lines
535 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
using Aop.Api.Domain;
|
|
|
|
namespace Aop.Api.Response
|
|
{
|
|
/// <summary>
|
|
/// AlipaySecurityProdDesQueryResponse.
|
|
/// </summary>
|
|
public class AlipaySecurityProdDesQueryResponse : AopResponse
|
|
{
|
|
/// <summary>
|
|
/// 11
|
|
/// </summary>
|
|
[XmlElement("dee")]
|
|
public GavintestNewLeveaOne Dee { get; set; }
|
|
|
|
/// <summary>
|
|
/// 1
|
|
/// </summary>
|
|
[XmlElement("string")]
|
|
public string String { get; set; }
|
|
}
|
|
}
|