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