Files
watcher/Watcher/ViewModels/AddContainerViewModel.cs

18 lines
502 B
C#

using Watcher.Models;
namespace Watcher.ViewModels;
public class AddContainerViewModel
{
public string Name { get; set; } = string.Empty;
public Image? Image { get; set; }
public string Status { get; set; } = string.Empty;
public string Hostname { get; set; } = string.Empty;
public string IPAddress { get; set; } = string.Empty;
public string ServerName { get; set; } = string.Empty; // oder ID, je nach Relation
public bool IsRunning { get; set; } = false;
}