8 lines
178 B
C#
8 lines
178 B
C#
namespace Api.Services.Contracts;
|
|
|
|
public interface ITextExtractor
|
|
{
|
|
Task<string> ExtractPdfAsync(Stream stream, CancellationToken ct);
|
|
string Normalize(string value);
|
|
}
|