mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-10-27 08:42:28 -04:00
15 lines
444 B
C#
15 lines
444 B
C#
namespace API.DTOs.Stats
|
|
{
|
|
public class ServerInfoDto
|
|
{
|
|
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; }
|
|
}
|
|
}
|