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

18 lines
405 B
C#
Raw Normal View History

2024-04-10 13:55:27 +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; }
}
}