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