Files
hamann-ausgabe-core/HaDocumentV6/Interfaces/IHaDocumentOptions.cs
2022-05-17 01:21:10 +02:00

10 lines
292 B
C#

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