Files
ClawdDotNet/Models/ServiceDisplayEntry.cs
T
RichardandClaude Opus 4.8 2fed388c99 Initial commit: ClawdDotNet
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>
2026-07-26 18:21:46 +02:00

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; }
}