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
435 B
C#
14 lines
435 B
C#
namespace ClawdDotNet.Models;
|
|
|
|
public sealed class ServiceDisplayEntry
|
|
{
|
|
public string ServiceId { get; set; } = "";
|
|
public string Name { get; set; } = "";
|
|
public string Type { get; set; } = "";
|
|
public int Port { get; set; }
|
|
public string Status { get; set; } = "Gestoppt";
|
|
public string StartedAt { get; set; } = "—";
|
|
public string Description { get; set; } = "";
|
|
public bool BuiltIn { get; set; }
|
|
}
|