Files
QWERTYkez.OpenXmlProcessors/QWERTYkez.ExcelProcessor/IExcelReader.cs

14 lines
346 B
C#
Raw Normal View History

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);
}