Добавьте файлы проекта.

This commit is contained in:
melekhin
2026-06-05 15:58:03 +07:00
parent 785bd7dc5d
commit cf8ef7add7
56 changed files with 13478 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
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);
}