mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2026-07-30 17:30:40 +00:00
11 lines
351 B
C#
11 lines
351 B
C#
namespace Esiur.CLI.Configuration;
|
|
|
|
public sealed class CliConfiguration
|
|
{
|
|
public string? DefaultProfile { get; set; }
|
|
public string OutputFormat { get; set; } = "table";
|
|
public string Timeout { get; set; } = "30s";
|
|
public Dictionary<string, ConnectionProfile> Profiles { get; set; }
|
|
= new(StringComparer.OrdinalIgnoreCase);
|
|
}
|