19 lines
457 B
C#
19 lines
457 B
C#
using System;
|
||
using System.Xml.Serialization;
|
||
using Aop.Api.Domain;
|
||
|
||
namespace Aop.Api.Response
|
||
{
|
||
/// <summary>
|
||
/// AftAifinFireeyeOcrImageQueryResponse.
|
||
/// </summary>
|
||
public class AftAifinFireeyeOcrImageQueryResponse : AopResponse
|
||
{
|
||
/// <summary>
|
||
/// 识别结果字段,这个是一个JSON字符串
|
||
/// </summary>
|
||
[XmlElement("content")]
|
||
public OcrIdentifyResult Content { get; set; }
|
||
}
|
||
}
|