Remove XApi, WinRM, LocalCmd, HTTP API, TLS probe, SQL deploy model, and deploy UI. Co-authored-by: Cursor <cursoragent@cursor.com>
10 lines
356 B
C#
10 lines
356 B
C#
namespace ZA.CoreService.ESBCertificateManager.Models;
|
|
|
|
public sealed class AppSettings
|
|
{
|
|
public bool UseOfflineSampleData { get; set; } = true;
|
|
public string SampleTargetsPath { get; set; } = "Data/targets.sample.json";
|
|
public string LogDirectory { get; set; } = "Logs";
|
|
public List<SonicConnection> SonicConnections { get; set; } = [];
|
|
}
|