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