
* feat: implement anonymous usage data collection Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com>
12 lines
No EOL
350 B
C#
12 lines
No EOL
350 B
C#
namespace API.DTOs
|
|
{
|
|
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; }
|
|
}
|
|
} |