BotSharp/src/Infrastructure/BotSharp.Abstraction/Knowledges/IPdf2TextConverter.cs
2023-08-28 10:24:43 -05:00

12 lines
293 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.AspNetCore.Http;
namespace BotSharp.Abstraction.Knowledges
{
public interface IPdf2TextConverter
{
Task<string> ConvertPdfToText(IFormFile formFile, int? startPageNum, int? endPageNum);
}
}