18 lines
740 B
C#
18 lines
740 B
C#
namespace ZA.CoreService.ESBCertificateManager.Models;
|
|
|
|
public sealed class AppSettings
|
|
{
|
|
public string ConnectionString { get; set; } = string.Empty;
|
|
public bool UseOfflineSampleData { get; set; } = true;
|
|
public string SampleTargetsPath { get; set; } = "Data/targets.sample.json";
|
|
public string LogDirectory { get; set; } = "Logs";
|
|
public int TlsTimeoutSeconds { get; set; } = 8;
|
|
public int TlsRetryCount { get; set; } = 2;
|
|
|
|
/// <summary>
|
|
/// Verbindungskonfigurationen für Progress Sonic ESB Management Instanzen.
|
|
/// Jeder Eintrag entspricht einer Sonic-Domain (z.B. einer Umgebung oder Tochtergesellschaft).
|
|
/// </summary>
|
|
public List<SonicConnection> SonicConnections { get; set; } = [];
|
|
}
|