DocumentPathOrigin property and all related code references have been removed from DbConfig, ConfigModel, and FinalizeDocumentJob. DocumentPath is now used exclusively for document path handling, simplifying configuration and reducing redundancy.
13 lines
467 B
C#
13 lines
467 B
C#
namespace EnvelopeGenerator.ServiceHost.Jobs;
|
|
|
|
public class DbConfig
|
|
{
|
|
public string ExternalProgramName { get; set; } = "signFLOW";
|
|
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; }
|
|
}
|