Files
hamann-ausgabe-core/HaDocument/Interfaces/IHaDocumentOptions.cs
2021-09-15 13:31: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; }
}
}