Initial Backend
This commit is contained in:
parent
bcf92c21e6
commit
3f6ff87370
15 changed files with 782 additions and 0 deletions
8
backend/Models/Container.cs
Normal file
8
backend/Models/Container.cs
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue