mirror of
https://git.teknik.io/Teknikode/Teknik.git
synced 2023-08-02 14:16:22 +02:00
31 lines
750 B
C#
31 lines
750 B
C#
namespace Teknik.Configuration
|
|
{
|
|
public class StatsConfig
|
|
{
|
|
public bool Enabled { get; set; }
|
|
|
|
public bool ShowWebStatus { get; set; }
|
|
|
|
public bool ShowDatabaseStatus { get; set; }
|
|
|
|
public bool ShowNetworkStatus { get; set; }
|
|
|
|
public string DatabaseProcessName { get; set; }
|
|
|
|
public string NetworkInterface { get; set; }
|
|
|
|
public long TotalMemory { get; set; }
|
|
|
|
public StatsConfig()
|
|
{
|
|
Enabled = false;
|
|
ShowWebStatus = false;
|
|
ShowDatabaseStatus = false;
|
|
ShowNetworkStatus = false;
|
|
DatabaseProcessName = string.Empty;
|
|
NetworkInterface = string.Empty;
|
|
TotalMemory = 0;
|
|
}
|
|
}
|
|
}
|