diff options
author | Serghei Cebotari <serghei@cebotari.ru> | 2024-11-14 00:16:58 +0300 |
---|---|---|
committer | Serghei Cebotari <serghei@cebotari.ru> | 2024-11-14 00:16:58 +0300 |
commit | 2026e2a4e242f1d865928e660d37ac83fd9da1e2 (patch) | |
tree | bee21de64ce73a17630d93561de66a9081f6f9a8 /OcrClient/Models/OcrResponse.cs | |
parent | ac20bbfc05c26766e9a16fbf7c6406db68cf05ae (diff) |
Move OcrClient to AddIn project
Diffstat (limited to 'OcrClient/Models/OcrResponse.cs')
-rw-r--r-- | OcrClient/Models/OcrResponse.cs | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/OcrClient/Models/OcrResponse.cs b/OcrClient/Models/OcrResponse.cs deleted file mode 100644 index 2b26ab7..0000000 --- a/OcrClient/Models/OcrResponse.cs +++ /dev/null @@ -1,28 +0,0 @@ -namespace OcrClient.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; } -} |