Changed the stats that are sent back to stat server from installed server.

This commit is contained in:
YEGCSharpDev 2021-10-14 15:56:38 -06:00
parent 4921b9d26b
commit 644cb6d1f6
7 changed files with 46 additions and 208 deletions

View file

@ -1,14 +1,11 @@
namespace API.DTOs.Stats
namespace API.DTOs.Stats
{
public class ServerInfoDto
{
public string InstallId { get; set; }
public string Os { get; set; }
public string DotNetVersion { get; set; }
public string RunTimeVersion { get; set; }
public string KavitaVersion { get; set; }
public string BuildBranch { get; set; }
public string Culture { get; set; }
public bool IsDocker { get; set; }
public int NumOfCores { get; set; }
public string DotnetVersion { get; set; }
public string KavitaVersion { get; set; }
}
}