Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/ZolozIdentificationZolozidGetResponse.cs

18 lines
405 B
C#
Raw Normal View History

2020-10-07 20:25:03 +08:00
using System;
using System.Xml.Serialization;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// ZolozIdentificationZolozidGetResponse.
/// </summary>
public class ZolozIdentificationZolozidGetResponse : AopResponse
{
/// <summary>
/// zcif结果
/// </summary>
[XmlElement("result_info")]
public string ResultInfo { get; set; }
}
}