Files

14 lines
346 B
C#
Raw Permalink 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);
}