mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-23 15:30:34 -04:00
12 lines
300 B
C#
12 lines
300 B
C#
namespace API.DTOs.Stats
|
|
{
|
|
public class ServerInfoDto
|
|
{
|
|
public string InstallId { get; set; }
|
|
public string Os { get; set; }
|
|
public bool IsDocker { get; set; }
|
|
public string DotnetVersion { get; set; }
|
|
public string KavitaVersion { get; set; }
|
|
}
|
|
}
|