Files
hamann-ausgabe-core/Archive/HaDocument/Interfaces/IHaDocumentOptions.cs
2022-11-25 19:15:23 +01: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; }
}
}