15 lines
541 B
C#
15 lines
541 B
C#
namespace HanaToolbox.Config;
|
|
|
|
public sealed class HanaConfig
|
|
{
|
|
/// <summary>HANA System ID, e.g. NDB. Used to build the OS user <sid>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; }
|
|
}
|