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

14 lines
346 B
C#
Raw Normal View History

2026-06-05 15:58:03 +07:00
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);
}