Files
Server-Dashboard/Server Dashboard/DashboardModules/ServerInformation.cs
Rene Schwarz 981ad26b1b t
2021-04-19 06:35:17 +02:00

18 lines
551 B
C#

using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Text;
namespace Server_Dashboard {
class ServerInformation {
public string ServerName { get; set; }
public string OSUserName { 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; }
}
}