18 lines
400 B
C#
18 lines
400 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Response
|
|
{
|
|
/// <summary>
|
|
/// ZolozIdentificationUserWebQueryResponse.
|
|
/// </summary>
|
|
public class ZolozIdentificationUserWebQueryResponse : AopResponse
|
|
{
|
|
/// <summary>
|
|
/// 扩展结果
|
|
/// </summary>
|
|
[XmlElement("extern_info")]
|
|
public string ExternInfo { get; set; }
|
|
}
|
|
}
|