mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-04-30 12:50:37 -04:00
16 lines
375 B
C#
16 lines
375 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace API.DTOs.Stats
|
|
{
|
|
public class InstallationStatsDto
|
|
{
|
|
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; }
|
|
}
|
|
}
|