using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// AiOcrTableRow Data Structure.
///
[Serializable]
public class AiOcrTableRow : AopObject
{
///
/// table一行的内容
///
[XmlArray("row")]
[XmlArrayItem("ai_ocr_table_context")]
public List Row { get; set; }
}
}