Files
QWERTYkez.OpenXmlProcessors/QWERTYkez.ExcelProcessor/IExcelReader.cs
2026-06-05 15:58:03 +07:00

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