9 lines
167 B
C#
9 lines
167 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace RhSolutions.Services;
|
|
|
|
public interface IOcrClient
|
|
{
|
|
public Task<IEnumerable<object[,]>> ProcessImage(string base64Image);
|
|
}
|