ZUGFeRDWebService: Fix config

This commit is contained in:
Jonathan Jenne
2023-02-28 13:21:55 +01:00
parent 1c428b7db6
commit 2f11b7082b
3 changed files with 8 additions and 7 deletions

View File

@@ -6,13 +6,17 @@
public string LogPath { get; set; }
public string MSSQLConnectionString { get; set; }
public string MaxFileSizeInMegabytes { get; set; }
public ZugferdConfig Zugferd { get; set; }
public FirebirdConfig Firebird { get; set; }
}
public class ZugferdConfig
{
public bool AllowFacturX { get; set; } = false;
public bool AllowXRechnung { get; set; } = false;
public bool AllowZugferd10 { get; set; } = true;
public bool AllowZugferd2x { get; set; } = true;
public FirebirdConfig Firebird { get; set; }
}
public class FirebirdConfig