18 lines
405 B
C#
18 lines
405 B
C#
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; }
|
|
}
|
|
}
|