18 lines
369 B
C#
18 lines
369 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Response
|
|
{
|
|
/// <summary>
|
|
/// AntOcrIdcardIdentifyResponse.
|
|
/// </summary>
|
|
public class AntOcrIdcardIdentifyResponse : AopResponse
|
|
{
|
|
/// <summary>
|
|
/// 识别结果
|
|
/// </summary>
|
|
[XmlElement("result")]
|
|
public string Result { get; set; }
|
|
}
|
|
}
|