Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/ZolozIdentificationZolozidGetResponse.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

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; }
}
}