29 lines
523 B
C#
29 lines
523 B
C#
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; }
|
|
}
|