Import des bestehenden Projektstands in Git. - .NET 10 WinForms Anwendung (Multi-Agent / Tool-System) - .gitignore fuer Build-Artefakte, Secrets und Runtime-Daten ergaenzt Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
14 lines
411 B
C#
14 lines
411 B
C#
namespace ClawdDotNet.Models;
|
|
|
|
/// <summary>
|
|
/// Zusammenfassung einer Instanz für die Anzeige im InstanceManager.
|
|
/// </summary>
|
|
public sealed class InstanceInfo
|
|
{
|
|
public string InstanceName { get; set; } = "";
|
|
public string FolderName { get; set; } = "";
|
|
public string FolderPath { get; set; } = "";
|
|
public int AgentCount { get; set; }
|
|
public string ApiKeyStatus { get; set; } = "—";
|
|
}
|