From f8c62c6defa5c8c5ac06450bbcf1dc558b6e1a32 Mon Sep 17 00:00:00 2001 From: Serghei Cebotari Date: Wed, 13 Nov 2024 23:42:28 +0300 Subject: Implement IOcrClient --- OcrClient/Models/OcrResponse.cs | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) (limited to 'OcrClient/Models') 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? Tables { get; set; } +} + +public class Table +{ + public string? RowCount { get; set; } + public string? ColumnCount { get; set; } + public List? Cells { get; set; } +} + +public class Cell +{ + public string? RowIndex { get; set; } + public string? ColumnIndex { get; set; } + public string? Text { get; set; } +} -- cgit v1.2.3