8 lines
No EOL
222 B
C#
8 lines
No EOL
222 B
C#
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;
|
|
} |