Files
123123/ZA.CoreService.ESBCertificateManager/Models/AppSettings.cs
T
GizzlerandCursor 12eebfc78a Simplify app to certificate recognition and MfApi restart only.
Remove XApi, WinRM, LocalCmd, HTTP API, TLS probe, SQL deploy model, and deploy UI.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-24 11:06:10 +02:00

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; } = [];
}