Добавьте файлы проекта.
This commit is contained in:
14
QWERTYkez.WordProcessor/IWordReader.cs
Normal file
14
QWERTYkez.WordProcessor/IWordReader.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
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);
|
||||
}
|
||||
Reference in New Issue
Block a user