14 lines
346 B
C#
14 lines
346 B
C#
namespace QWERTYkez.ExcelProcessor;
|
|
|
|
public interface IExcelReader
|
|
{
|
|
long DocumentSize { get; }
|
|
string? FilePath { get; }
|
|
bool IsValid { get; }
|
|
|
|
ISet<string> FindPlaceholders();
|
|
|
|
|
|
bool TryWrite(string destinationPath, Action<IExcelWriter> action);
|
|
bool TryWrite(Action<IExcelWriter> write, Action<IExcelReader> read);
|
|
} |