Files
Server-Dashboard/Server Dashboard/ViewModels/ServerModule/DashboardModuleViewModel.cs
Rene Schwarz cf7b9abcf0 yes
2021-04-11 23:29:13 +02:00

26 lines
924 B
C#

using Server_Dashboard.Views.DashboardPages.ModuleCRUD;
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Input;
using System.Windows.Media;
namespace Server_Dashboard {
class DashboardModuleViewModel : BaseViewModel {
public string ModuleName { get; set; }
public string StatusIndicator { get; set; }
public string StatusIndicatorBG { get; set; }
public string ServerName { get; set; }
public string HostName { get; set; }
public string CpuTemp { get; set; }
public string GpuTemp { get; set; }
public string Uptime { get; set; }
public string DeployDate { get; set; }
public string PublicIpAdress { get; set; }
public string PrivateIpAdress { get; set; }
public string OSHostName { get; set; }
}
}