mirror of
https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
synced 2025-10-29 17:25:32 +00:00
15 lines
395 B
C#
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; }
|
|
}
|
|
}
|