Files

14 lines
341 B
C#
Raw Permalink Normal View History

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