RhSolutions-AddIn/RhSolutions.AddIn/Services/IOcrClient.cs

9 lines
200 B
C#
Raw Normal View History

2024-11-14 00:16:58 +03:00
using System.Threading.Tasks;
2024-11-09 22:34:58 +03:00
2024-11-14 00:16:58 +03:00
namespace RhSolutions.Services;
2024-11-09 22:34:58 +03:00
public interface IOcrClient
{
2024-11-13 23:42:28 +03:00
public Task<IEnumerable<object[,]>> ProcessImage(string base64Image, string xFolderId, string apiKey);
2024-11-09 22:34:58 +03:00
}