Files
2026-06-05 15:58:03 +07:00

14 lines
341 B
C#

namespace QWERTYkez.WordProcessor;
public interface IWordReader
{
long DocumentSize { get; }
string? FilePath { get; }
bool IsValid { get; }
ISet<string> FindPlaceholders();
bool TryWrite(string destinationPath, Action<IWordWriter> action);
bool TryWrite(Action<IWordWriter> write, Action<IWordReader> read);
}