33 lines
725 B
C#
33 lines
725 B
C#
namespace ZUGFeRDRESTService
|
|
{
|
|
public class Config
|
|
{
|
|
public string Name { get; set; }
|
|
|
|
public string LogPath { get; set; }
|
|
|
|
public string MSSQLConnectionString { get; set; }
|
|
|
|
public string MaxFileSizeInMegabytes { get; set; }
|
|
|
|
public string GDPictureVersion { get; set; }
|
|
|
|
public ZugferdConfig Zugferd { 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 bool AllowPeppolBISBill3x { get; set; } = false;
|
|
|
|
}
|
|
|
|
}
|