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>
9 lines
213 B
C#
9 lines
213 B
C#
namespace ClawdDotNet.Models;
|
|
|
|
public sealed class AgentToolDisplayEntry
|
|
{
|
|
public bool Assigned { get; set; }
|
|
public string ToolName { get; set; } = "";
|
|
public string Description { get; set; } = "";
|
|
}
|