using OcrClient.Models; using System.Net.Http; namespace OcrClient.Services; public class YandexOcrClient : IOcrClient { private readonly HttpClient _httpClient; public YandexOcrClient(HttpClient httpClient) { _httpClient = httpClient; } public Task ProcessImage(string base64Image) { throw new NotImplementedException(); } }