Esiur CLI

This commit is contained in:
2026-07-18 00:44:14 +03:00
parent 3e8fb50110
commit ac36a3ddc7
36 changed files with 2396 additions and 304 deletions
@@ -0,0 +1,12 @@
namespace Esiur.CLI.Configuration;
public sealed class ConnectionProfile
{
public required string Name { get; init; }
public required string Endpoint { get; init; }
public string? Provider { get; init; }
public string? Identity { get; init; }
public string? Domain { get; init; }
public string? DefaultResourcePath { get; init; }
public string OutputFormat { get; init; } = "table";
}