RhSolutions-AddIn/RhSolutions.AddIn/Models/OcrResponse.cs

29 lines
523 B
C#
Raw Normal View History

2024-11-14 00:16:58 +03:00
namespace RhSolutions.Models;
public class OcrResponse
{
public Result Result { get; set; }
}
public class Result
{
public TextAnnotation TextAnnotation { get; set; }
}
public class TextAnnotation
{
public List<Table> Tables { get; set; }
}
public class Table
{
public string RowCount { get; set; }
public string ColumnCount { get; set; }
public List<Cell> Cells { get; set; }
}
public class Cell
{
public string RowIndex { get; set; }
public string ColumnIndex { get; set; }
public string Text { get; set; }
}