This commit is contained in:
Rene Schwarz
2021-04-11 23:29:13 +02:00
parent ca432897af
commit cf7b9abcf0
52 changed files with 1281 additions and 142 deletions

View File

@@ -7,9 +7,6 @@ namespace Server_Dashboard {
public string ModulName { get; set; }
public string Creator { get; set; }
public ModuleItem ServerInfo { get; set; }
public string ModuleIcon { get; set; }
public int Width { get; set; }
public int Height { get; set; }
public string StatusIndicator { get; set; }
public string StatusIndicatorBG { get; set; }
@@ -17,7 +14,6 @@ namespace Server_Dashboard {
StatusIndicator = true ? "#20c657" : "#e53935";
StatusIndicatorBG = true ? "#94eeb0" : "#ef9a9a";
ServerInfo = new ModuleItem(true, 88.88, 69.69, DateTime.Now, "sudo", "Archlinux", "192.168.1.100", "84.102.25.96");
}
}
}