blob: 0233d143b98a1664aa0573968c705e267812521f (
plain)
1
2
3
4
5
6
7
8
|
using System.Threading.Tasks;
namespace RhSolutions.Services;
public interface IOcrClient
{
public Task<IEnumerable<object[,]>> ProcessImage(string base64Image, string xFolderId, string apiKey);
}
|