big changes

This commit is contained in:
Mike Gisler
2026-07-28 08:03:12 +02:00
parent c73f53d740
commit 4d19873776
179 changed files with 14953 additions and 494 deletions
@@ -0,0 +1,30 @@
namespace ZA.CoreService.ESBCertificateManager.Setup;
public sealed class SetupCheckResult
{
public bool RuntimeReady { get; init; }
public bool CertificateReady { get; init; }
public bool DatabaseReady { get; init; }
public bool CredentialsReady { get; init; }
public string RuntimeMessage { get; init; } =
string.Empty;
public string CertificateMessage { get; init; } =
string.Empty;
public string DatabaseMessage { get; init; } =
string.Empty;
public string CredentialsMessage { get; init; } =
string.Empty;
public bool IsReady =>
RuntimeReady
&& CertificateReady
&& DatabaseReady
&& CredentialsReady;
}