namespace ContainerDashboard.Models; public class Container { public string Name { get; set; } = string.Empty; public string ContainerNamespace { get; set; } = string.Empty; public bool Running { get; set; } = false; }