Files
Simon Martens 1af73a2ded done
2022-01-22 16:16:08 +01:00

15 lines
395 B
C#

using System.Collections.Generic;
namespace HamannPrinter
{
public class Confix
{
public bool? VolumeDocx { get; set; }
public bool? RegisterDocx { get; set; }
public string HamannXmlPath { get; set; }
public string OutputPath { get; set; }
public (int, int) Years { get; set; }
public string Editionsrichtlinien { get; set; }
}
}