aboutsummaryrefslogtreecommitdiff
path: root/OcrClient/Models/OcrResponse.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OcrClient/Models/OcrResponse.cs')
-rw-r--r--OcrClient/Models/OcrResponse.cs25
1 files changed, 24 insertions, 1 deletions
diff --git a/OcrClient/Models/OcrResponse.cs b/OcrClient/Models/OcrResponse.cs
index 2afc041..2b26ab7 100644
--- a/OcrClient/Models/OcrResponse.cs
+++ b/OcrClient/Models/OcrResponse.cs
@@ -2,4 +2,27 @@ namespace OcrClient.Models;
public class OcrResponse
{
-} \ No newline at end of file
+ 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; }
+}