NewGaoKaoApi/PaymentSDK/AliPay/Domain/AiOcrTableRow.cs

21 lines
467 B
C#

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