first commit

This commit is contained in:
2026-03-02 20:53:28 +01:00
commit d27c205106
63 changed files with 4593 additions and 0 deletions

14
Config/HanaConfig.cs Normal file
View File

@@ -0,0 +1,14 @@
namespace HanaToolbox.Config;
public sealed class HanaConfig
{
/// <summary>HANA System ID, e.g. NDB. Used to build the OS user &lt;sid&gt;adm.</summary>
public string Sid { get; set; } = "NDB";
public string InstanceNumber { get; set; } = "00";
/// <summary>Optional override for hdbsql binary path. Null = auto-detect.</summary>
public string? HdbsqlPath { get; set; }
/// <summary>Optional override for hdbuserstore binary path. Null = auto-detect.</summary>
public string? HdbuserstorePath { get; set; }
}