diff options
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; } -} |