add shard name to ui

This commit is contained in:
Stanley Dimant
2022-10-03 10:10:28 +02:00
parent a2a4d07c04
commit 5869ccac09
2 changed files with 1 additions and 6 deletions

View File

@@ -6,5 +6,6 @@
public bool IsAdmin { get; set; } public bool IsAdmin { get; set; }
public bool IsModerator { get; set; } public bool IsModerator { get; set; }
public string UID { get; set; } public string UID { get; set; }
public string ShardName { get; set; }
} }
} }

View File

@@ -2,12 +2,6 @@
{ {
public record SystemInfoDto public record SystemInfoDto
{ {
public double CpuUsage { get; set; }
public long CacheUsage { get; set; }
public int UploadedFiles { get; set; }
public double NetworkIn { get; set; }
public double NetworkOut { get; set; }
public int OnlineUsers { get; set; } public int OnlineUsers { get; set; }
public long RAMUsage { get; set; }
} }
} }