- Programmiersprache von VSC zu C# geändert - Framework von .NET Framework zu .NET geändert
14 lines
534 B
C#
14 lines
534 B
C#
namespace EnvelopeGenerator.ServiceHost.Jobs;
|
|
|
|
public class DbConfig
|
|
{
|
|
public string ExternalProgramName { get; set; } = "signFLOW";
|
|
public string DocumentPathOrigin { get; set; } = string.Empty;
|
|
public string DocumentPath { get; set; } = string.Empty;
|
|
public string ExportPath { get; set; } = string.Empty;
|
|
public int SendingProfile { get; set; }
|
|
public string SignatureHost { get; set; } = string.Empty;
|
|
public bool Default_Tfa_Enabled { get; set; }
|
|
public bool Default_Tfa_WithPhone { get; set; }
|
|
}
|