diff options
author | Serghei Cebotari <serghei@cebotari.ru> | 2024-11-13 23:42:28 +0300 |
---|---|---|
committer | Serghei Cebotari <serghei@cebotari.ru> | 2024-11-13 23:42:28 +0300 |
commit | f8c62c6defa5c8c5ac06450bbcf1dc558b6e1a32 (patch) | |
tree | daa731f1233940c93db603f319bb138d277a84bb /OcrClient/Services/IOcrClient.cs | |
parent | 3800c961166dbcc4553dd846d0291388e60d7e6f (diff) |
Implement IOcrClient
Diffstat (limited to 'OcrClient/Services/IOcrClient.cs')
-rw-r--r-- | OcrClient/Services/IOcrClient.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OcrClient/Services/IOcrClient.cs b/OcrClient/Services/IOcrClient.cs index c8b1a86..9b281c9 100644 --- a/OcrClient/Services/IOcrClient.cs +++ b/OcrClient/Services/IOcrClient.cs @@ -4,5 +4,5 @@ namespace OcrClient.Services; public interface IOcrClient { - public Task<OcrResponse> ProcessImage(string base64Image); + public Task<IEnumerable<object[,]>> ProcessImage(string base64Image, string xFolderId, string apiKey); } |