Files
hamann-ausgabe-core/HaDocumentNew/Interfaces/IHaDocumentOptions.cs
2022-06-07 16:14:27 +02:00

9 lines
252 B
C#

namespace HaDocument.Interfaces;
public interface IHaDocumentOptions {
string HamannXMLFilePath { get; set; }
string[] AvailableVolumes { get; set; }
bool NormalizeWhitespace { get; set; }
(int, int) AvailableYearRange { get; set; }
}