8 lines
225 B
C#
8 lines
225 B
C#
namespace BotSharp.Abstraction.Knowledges
|
|
{
|
|
public interface IPdf2TextConverter
|
|
{
|
|
public string Name { get; }
|
|
Task<string> ConvertPdfToText(string filePath, int? startPageNum, int? endPageNum);
|
|
}
|
|
} |